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.

11 lines
229 B
GDScript

1 year ago
extends ActionBlackboard
class_name ActionBlackboardSet
@export var key: String
@export var value: int
func execute(character: Character, blackboard: Blackboard) -> int:
1 year ago
blackboard.set_value(key, value)
1 year ago
return SUCCESS