Created
April 20, 2017 15:49
-
-
Save thimenesup/07829529eb320209fe4b25727715100a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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