This is precocious, there aren't even tutorials like this to find nowadays. Keep it up, you deserve way more subs!
@ABHISHEKSINGH-nv1se3 жыл бұрын
I am enjoying this series. May this series keep going and keep teaching me new stuffs. And thanks for making these awesome LWJGL videos.
@GetRektTom3 жыл бұрын
You just gained yourself a sub. Going to watch this entire series from ep. 0 now
@LawMasterTimmy3 жыл бұрын
thanks so much for this series so far, the only channel I can find making a 2d game engine
@EdWard-cv5gc3 жыл бұрын
Looking forward to go through all theses vídeos!
@hilbert_curve36803 жыл бұрын
Dude, great video and video series, but I kinda want to see more “How it Works” videos. All on your time, of course. Keep up the great work.
@jorgeaugusto303 жыл бұрын
Very good and informative video. Congratulations!
@v_10403 жыл бұрын
you deserve more views and subs bro.
@GamesWithGabe3 жыл бұрын
Thanks V_ :)
@2skateboards1133 жыл бұрын
Bruh thanks I been trynna see this
@PebeGaming3 жыл бұрын
Me: Thinking Robert Wadlow is big. Gabe's Intellij: fucc u
@marcusslover3 жыл бұрын
I love your content!
@max-speed. Жыл бұрын
```Java // Create a new class for the jumping ability public class PlayerJump { // Set the maximum height of the jump public static final int MAX_HEIGHT = 20; // Create a method for the jumping ability public void jump(){ // Calculate the current height of the jump int currentHeight = 0; while (currentHeight < MAX_HEIGHT) { currentHeight++; } // Make the player jump System.out.println("The player is now jumping!"); } } ``` Written by Chatsonic