Move away from using pixel coordinates to "board coordinates"
Changed aspect ratio from 4:3 to 9:16
This commit is contained in:
@ -7,9 +7,10 @@ import com.me.brickbuster.BrickBuster;
|
||||
public class DesktopLauncher {
|
||||
public static void main (String[] arg) {
|
||||
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
||||
config.width = BrickBuster.WIDTH;
|
||||
config.height = BrickBuster.HEIGHT;
|
||||
config.width = 450;
|
||||
config.height = 800;
|
||||
config.title = BrickBuster.TITLE;
|
||||
new LwjglApplication(new BrickBuster(), config);
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user