added speed and jump modifiers based on weapon weight

This commit is contained in:
derek
2025-06-17 09:22:08 -05:00
parent 07ea71a3ed
commit 7c76c791f2
12 changed files with 26 additions and 7 deletions

View File

@@ -16,4 +16,4 @@ func Physics_Update(delta):
if Input.is_action_just_pressed("jump"):
character.jumps_remaining -= 1
character.velocity.y += character.JUMP_VELOCITY
character.velocity.y += standard_jump()