Skip to content

Instantly share code, notes, and snippets.

@thimenesup
Created April 20, 2017 15:49
Show Gist options
  • Save thimenesup/07829529eb320209fe4b25727715100a to your computer and use it in GitHub Desktop.
Save thimenesup/07829529eb320209fe4b25727715100a to your computer and use it in GitHub Desktop.
onready var timer = Timer.new
var wait_time = 30 #The video duration
func _ready():
add_child(timer)
timer.set_wait_time(wait_time)
timer.connect("timeout",self,"video_ended")
timer.start()
func video_ended():
get_tree().change_scene("res://my_scene.tscn")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment