
Publisher
rockgem
Godot UI Animation Library
A collection of the most commonly used animations for your UI
This plugin has been mirrored from the Godot Asset Library.
The plugin author is in no way affiliated with Gadget.
If you are the author of this plugin and would like this mirror removed, please contact support@gadgetgodot.com.
Quick Start
Installation
Install the plugin through Godot Asset Library (recommended). Or copy the godot_ui_animations folder into addons/ folder
Usage
Go to your Control node's script, specifically in the _ready() function and call UIAnimation.animate_slide_from_left() as an example.
Code examples:
[!NOTE] This add-on is currently in development, it may get future updates and improvements in the future.
Making the panel popup in the center of the screen
https://github.com/user-attachments/assets/f8084790-d504-47f0-9ff8-d0901b0816de
func _ready():
UIAnimation.animate_pop($Panel)
Note that the functions requires a Control reference to be passed in
Available animations currently in this version:
animate_pop()
animate_shrink()
animate_slide_from_left()
animate_slide_to_left()
animate_slide_from_right()
animate_slide_to_right()
animate_from_left_to_center()
animate_from_center_to_left()
animate_from_right_to_center()
animate_from_center_to_right()
https://github.com/user-attachments/assets/90c8728d-0d18-4cff-8223-4471f86ffe3d
https://github.com/user-attachments/assets/714d1e2f-a82b-43a2-957f-1ead49e5cf48