ZoaC
February 24, 2025, 10:22pm
1
Godot Version
4.3
Question
I tried to implement a smart scene manager according to many articles i read. Do you guys think what i did is a good solution? (I didnt add scene transitions yet )
If it works for your use case it’s a good solution! If it doesn’t then take the time to dissect what is causing friction and learn how to best amend.
Make sure to paste code instead of screenshots
Posting here so to be linked for later use instead of re-typing this every time
Make sure you paste scripts instead of screenshots. To properly format pasted code use three ticks ``` at the start and end of your paste like so:
```
# type or paste code here
func _ready() -> void:
print("My ready function!")
```
Results in:
# type or paste code here
func _ready() -> void:
print("My ready function!")
Press the </> button or ctrl+e in the forum to create these ticks.
[2024-09-02…