mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
first commit
This commit is contained in:
commit
fafcbd1530
223 changed files with 107395 additions and 0 deletions
9
Stages/World.gd
Normal file
9
Stages/World.gd
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue