mirror of
https://github.com/Relintai/the_tower_pandemonium.git
synced 2024-11-14 10:37:25 +01:00
13 lines
199 B
GDScript3
13 lines
199 B
GDScript3
|
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)
|