mirror of
https://github.com/Relintai/the_tower.git
synced 2024-11-14 10:27:21 +01:00
13 lines
199 B
GDScript
13 lines
199 B
GDScript
extends VoxelWorldBlocky
|
|
|
|
var time : float = 0
|
|
|
|
func _process(delta):
|
|
time += delta
|
|
|
|
if time > 3:
|
|
if get_parent().has_method("next_level"):
|
|
get_parent().next_level()
|
|
|
|
set_process(false)
|