bom/client/ui/debug/StateLabel.gd
2024-02-15 13:45:17 +01:00

15 lines
234 B
GDScript

extends DebugLabel
var keys := StateComponent.State.keys()
var state: StateComponent
func _process(_delta):
if !Global.player:
return
if !state:
state = Global.player.get_node("State")
return
text = keys[state.current]