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

View File

@@ -1,7 +1,7 @@
extends CharacterBody3D
const SPEED = 5.0
const JUMP_VELOCITY = 4.5
const SPEED = 3.0
const JUMP_VELOCITY = 2.5
func _physics_process(delta):
# Add the gravity.

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()

1
scripts/sheep.gd.uid Normal file
View File

@@ -0,0 +1 @@
uid://bt82qpykbut2u