This commit is contained in:
PajamaBee 2025-07-21 23:23:12 -05:00
parent f4ffbf642b
commit f5f80fd180
15 changed files with 73 additions and 10 deletions

View file

@ -10,6 +10,9 @@ func _ready() -> void:
playerObject = $Horse
func _process(delta: float) -> void:
if playerObject.global_position.y <= -100:
playerObject.global_position = Vector3(0, 5, 0)
var rotationDif = playerObject.angular_velocity
monies += (rotationDif.length() * delta)/6.2