Has the ‘Change Scene’ feature disappeared? #2097
-
When dialogic was in the days of godot3.X, there was a 'change scene'. It doesn't appear in godot4.X. Am I doing something wrong? If not, are there any further plans? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Use Signals or autoload func call to change scene. via Autoload
Call Autoload on timeline ie... Connected signal ie...
call via string... call via dictionary... |
Beta Was this translation helpful? Give feedback.
Change Scene is deprecated.
Use Signals or autoload func call to change scene.
via Autoload
Call Autoload on timeline ie...
do autoload.change_scene("res://scene_name.tscn")
Connected signal ie...
To react to the signal event, connect to it before starting your dialog: