the_tower_pandemonium/game/levels/Level10.gd

13 lines
199 B
GDScript3
Raw Normal View History

2022-10-01 12:52:55 +02:00
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)