I need ur help with something necessary PLEASE, i want to add the video as an intro scene and when the video ends the game scene starts, how do i do that?
@KrozahlАй бұрын
i'm trying to do that too by mashing together different tutorials, this one seems like it has some promise but i'm not sure yet; still working on the kinks i'll get back to you if i can figure it out! the other tutorial im mashing with this one is "How to make Cutscene in Godot 4" by "16BitDev"
@Grawesome223 күн бұрын
Just create a timer node onto the main node and at the en of that timer change the scene to the main menu of the game. There might be better ways to do it by that's how I did it. This is my code: extends Node2D @onready var timer: Timer = $Timer func _ready() -> void: timer.start(6) func _on_timer_timeout() -> void: get_tree().change_scene_to_file("res://Scenes/menu.tscn")
@TomDoesExists8 күн бұрын
@@Grawesome2no need theres a function for when the video starts normally
@Grawesome28 күн бұрын
@@TomDoesExists I assumed so, but I'm so new to this that my language skill is that of a person who just started learning a new language "Me start intro, then me stop intro, then me win!"