
- Implemented firebolt animation - Started on icy wind animation - Added animation to health bars - Improved the animation system more - Cleaned up some code
6 lines
184 B
GDScript
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())
|