This commit is contained in:
2025-04-16 00:38:13 +02:00
parent dad6e2f73e
commit e34491f7ec
12 changed files with 2582 additions and 3 deletions

8
scripts/sheep.gd Normal file
View File

@@ -0,0 +1,8 @@
extends CharacterBody3D
func _physics_process(delta):
# Add the gravity.
if not is_on_floor():
velocity += get_gravity() * delta
move_and_slide()