Raise-Your-Wand/Scripts/fpsMonitor.gd
nc5432 69008d0046 More animations
- Implemented firebolt animation
- Started on icy wind animation
- Added animation to health bars
- Improved the animation system more
- Cleaned up some code
2024-05-14 21:40:18 -04:00

6 lines
184 B
GDScript

extends RichTextLabel
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _physics_process(_delta):
text = "FPS: " + str(Engine.get_frames_per_second())