Erster Prototyp

This commit is contained in:
Exobyt 2024-08-17 19:46:21 +02:00
parent 2da5af8954
commit 885351b624
48 changed files with 1350 additions and 0 deletions

View file

@ -0,0 +1,10 @@
extends Node2D
@onready var slider = $Path2D/Slider
func _physics_process(delta: float) -> void:
if not GLOBAL.hasSelectedSpeed:
if Input.is_action_just_pressed("stop"):
GLOBAL.hasSelectedSpeed = true
GLOBAL.currentSpeed = GLOBAL.SPEED.MAX
print()