first commit

This commit is contained in:
zoe-bat 2021-09-08 10:27:14 +02:00
commit fafcbd1530
223 changed files with 107395 additions and 0 deletions

9
Stages/World.gd Normal file
View file

@ -0,0 +1,9 @@
extends Node2D
func _physics_process(_delta):
fast_forward()
func fast_forward():
if (Input.is_action_pressed("fast_forward")):
Engine.time_scale = 3
if (Input.is_action_just_released("fast_forward")):
Engine.time_scale = 1