View all by andrew-leary
andrew-leary
Follow andrew-leary
Follow
Following andrew-leary
Following
Add To Collection
Collection
Comments
Devlog
Learning Godot
←
Return to Learning Godot
Devlog
Devlog02: Jumping
October 10, 2025
by
andrew-leary
#Godot, #2D Platformer
New Code for jumping extends CharacterBody2D # === MOVEMENT CONSTANTS === const SPEED = 300.0 const JUMP_VELOCITY = -600.0 # For Lesson 2! var jump_released = false const MAX_JUMPS = 2 var jump_count...
Continue reading
Devlog01: Simple Movement Script
October 06, 2025
by
andrew-leary
#Godot, #GameDev
I started by working my way through this course: https://www.fulltimegamedev.com/ and then started making my own lessons. I highly recommend this course. Thomas' youtube channel is great too: https://...
Continue reading