You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
347 B
GDScript
12 lines
347 B
GDScript
## Conditions are leaf nodes that either return SUCCESS or FAILURE depending on
|
|
## a single simple condition. They should never return `RUNNING`.
|
|
@tool
|
|
@icon("../../icons/condition.svg")
|
|
class_name ConditionLeaf
|
|
extends Leaf
|
|
|
|
func get_class_name() -> Array[StringName]:
|
|
var classes := super()
|
|
classes.push_back(&"ConditionLeaf")
|
|
return classes
|