Welcome to a quick tutorial series on making your very own website! In episode 1, we will start by setting up our development environment using Brackets, create the files necessary for our website to function, and begin coding in HTML!
Uncategorized
Patreon Test
Everyone can see this!
But only Indie Programmer patrons and up can see the following:
And on the second day, Bryan created a test post.
And Bryan saw that it was good.
1 2 3 4 5 6 7 8 9 10 |
private void setupUI() { gameUI = new UI(); gameUI.createMenu("TowerPicker", 1280, 100, 192, 960, 2, 0); towerPickerMenu = gameUI.getMenu("TowerPicker"); towerPickerMenu.quickAdd("BlueCannon", "cannonBlueFull"); towerPickerMenu.quickAdd("IceCannon", "cannonIceFull"); } //And then Bryan tested further the embedded code function, and it appeared so. |
Hello, World!
I say hello on my own terms, WordPress.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
public static void update() { switch(gameState) { case MAINMENU: if (mainMenu == null) mainMenu = new MainMenu(); mainMenu.update(); break; case GAME: if (game == null) game = new Game(map); game.update(); break; case EDITOR: if (editor == null) editor = new Editor(); editor.update(); break; } long currentTime = System.currentTimeMillis(); if (currentTime > nextSecond) { nextSecond += 1000; framesInLastSecond = framesInCurrentSecond; framesInCurrentSecond = 0; } framesInCurrentSecond++; System.out.println(framesInLastSecond + " fps"); } |