update
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class_name GrabSequence extends SequenceComposite
|
||||
|
||||
func _ready():
|
||||
add_child(GrabCondition.new())
|
||||
add_child(GrabAction.new())
|
||||
@@ -0,0 +1,5 @@
|
||||
class_name MoveSequence extends SequenceComposite
|
||||
|
||||
func _ready():
|
||||
add_child(MoveCondition.new())
|
||||
add_child(MoveAction.new())
|
||||
@@ -0,0 +1,5 @@
|
||||
class_name PutSequence extends SequenceComposite
|
||||
|
||||
func _ready():
|
||||
add_child(PutCondition.new())
|
||||
add_child(PutAction.new())
|
||||
Reference in New Issue
Block a user