Bee State Machine
This commit is contained in:
parent
20bcab01b1
commit
752131c955
16 changed files with 467 additions and 13 deletions
|
|
@ -1,11 +1,17 @@
|
|||
class_name DirectorDrone extends Drone
|
||||
|
||||
@export var visit_order : int = 0 :
|
||||
get:
|
||||
return visit_order
|
||||
set(value):
|
||||
visit_order = value
|
||||
update_label_value()
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
pass # Replace with function body.
|
||||
pass
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(_delta):
|
||||
pass
|
||||
|
||||
func update_label_value():
|
||||
$Label.text = str(visit_order)
|
||||
Loading…
Add table
Add a link
Reference in a new issue