🎬Scene Transicioner
This handler facilitates seamless transitions between scenes, offering the option to include a loading screen, particularly useful for larger scenes.
Getting started
The singleton can be accessed through GodotEssentialsSceneTransitioner
. This manager utilizes the foundational class GodotEssentialSceneTransition
to manage scene transitions.
To effectively utilize this system, you are required to create your transition scenes by extending the foundational class GodotEssentialSceneTransition
. These transition scenes should incorporate the essential signals and parameters necessary for seamless integration with the singleton.
The GodotEssentialSceneTransition
primarily functions as a container for managing additional parameters and emitting the appropriate signals.
For example, consider a real use case, such as a fade scene where you can specify the animation name to choose between different types of fades (e.g., 'fade_in' or 'fade_out').
The target_scene
parameter can be provided as either a PackedScene
or the file path to the desired scene:
It's important to note that the finished_transition
signal must be manually emitted. This design choice provides flexibility in determining precisely when a transition is considered complete.
Transition with loading screen
This class offers a function designed for working with a loading screen as a transition. To utilize this functionality, your custom loading scene must also extend from GodotEssentialSceneTransition
to receive progression data.
In this case, the finished_transition
signal is emitted after the progress value reachs 1 when the scene load is completed.
This feature is particularly beneficial for large scenes where loading times may be longer. When providing the scene, it should be passed as a file path since our class internally leverages the ResourceLoader
In the loading scene, you gain access to progress and load status data retrieved from the ResourceLoader, which you can utilize to display relevant information. Below is a basic example to demonstrate this functionality.
To ensure proper functionality, it's essential to call the parent _process()
function; failing to do so will result in the information not being updated:
API reference
GodotEssentialsSceneTransicioner
transition_to(scene, transition: PackedScene, data: Dictionary = {})
The primary function responsible for initiating the transition to the target scene is the transition_to
function. Any data passed to this function will be accessible within the transition scene, enabling the incorporation of external parameters as needed.
It is focused on transitioning pre-loaded scenes.
The scene
parameter can be received as PackedScene or String file path
It's worth noting that the transition scene is added to the viewport, not the scene tree. This approach ensures that the transition will execute even if nodes in the main tree are freed
transition_to_with_loading(scene: String, loading_scene: PackedScene, data: Dictionary = {})
It behaves identically to transition_to
, but with one key distinction: the scene
parameter must be provided as a file path string. This requirement is due to the transitioner's utilization of the ResourceLoader for scene loading
GodotEssentialsSceneTransition
Variables
data: Dictionary
progress: Array
load_status: ThreadLoadStatus
Signals
started_transition(data:Dictionary)
finished_transition(data:Dictionary, next_scene)
next_scene
it's only provided ontransition_to_with_loading
Last updated