16 lines
285 B
GDScript3
16 lines
285 B
GDScript3
|
extends Unit
|
||
|
|
||
|
func _ready() -> void:
|
||
|
|
||
|
super._ready()
|
||
|
state_machine.launch()
|
||
|
|
||
|
|
||
|
func _on_state_value_changed(state_value_name: String, value: Variant) -> void:
|
||
|
match state_value_name:
|
||
|
"hp":
|
||
|
%hp.value=value
|
||
|
"hp_max":
|
||
|
%hp.max_value=value
|
||
|
pass # Replace with function body.
|