4 lines
165 B
GDScript
4 lines
165 B
GDScript
extends Label
|
|
|
|
func _process(_delta):
|
|
set_text("FPS " + str(Engine.get_frames_per_second()) + ", ANGLE " + str(floor((%Player.position.angle() + PI) / TAU * 360)))
|