Godot Version 4.4
How to create a pop-up window in godot 4.4 such that the pop up appears on pressing the button, and it should also has a close button too, to close the window with beautiful animation.
How to create a pop-up window in godot 4.4 such that the pop up appears on pressing the button, and it should also has a close button too, to close the window with beautiful animation.
I’m no expert on GDscript coding but I’m pretty sure you can make it it’s own scene and then use add_child() to add it to the scene when needed.
Godot has a Window (and derived Popup) node you can use. What have you tried so far?