Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Billy2600

Pages: [1]
1
SFML projects / Bazoik - A clone of the arcade game Berzerk
« on: July 23, 2020, 07:11:59 pm »
Bazoik is a free and open source clone of the 80's arcade game Berzerk. I actually created this in 2018, with a couple friends doing everything that wasn't code. If you do take a look at the code, please know that it's not up to my current standards and doesn't really take advantage of C++11 features, etc. Currently Windows only.

I'd love see hear what you think of the game.



Itch.io

Github



2
General / Error while capturing resized window?
« on: June 14, 2017, 03:42:37 am »
I'm trying to capture the window in order to do a sort of transition effect, but when I capture a resized window it seems to only capture a portion of the screen or display it incorrectly. There are other ways to do the effect I'm looking for, but I'm hoping to get this method working. I am currently developing on Win10 with VS2015. See the following webms:

Default window size: https://webmshare.com/play/Zro60

Resized window: https://webmshare.com/play/jzxXa

This is the code I'm using to capture the window:
txTrans.create( game->window.getSize().x, game->window.getSize().y );
txTrans.update( game->window );
sprTrans.setTexture( txTrans );
 

Pages: [1]