This commit is contained in:
Booklordofthedings 2024-08-18 11:02:15 +02:00
parent abb54d45ca
commit 6a9a99389c
8 changed files with 39 additions and 4 deletions

View file

@ -0,0 +1,7 @@
extends CharacterBody2D
class_name Box;
func _physics_process(delta: float) -> void:
velocity.y += 50
velocity.x = velocity.x * 0.8
move_and_slide()