1
0
mirror of https://github.com/Relintai/the_tower.git synced 2025-03-22 19:07:38 +01:00
the_tower/levels/Level10.gd
2020-06-11 12:23:35 +02:00

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)