fix: compatible with godot 4.7.dev
This commit is contained in:
parent
2a4e00e6f1
commit
4e40c1acdc
4 changed files with 5 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
#include "behaviour_action.h"
|
||||
#include "core/object/class_db.h"
|
||||
#include "core/object/object.h"
|
||||
|
||||
void BehaviourAction::_bind_methods() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
#include "behaviour_composite.h"
|
||||
#include "core/variant/typed_array.h"
|
||||
|
||||
void BehaviourComposite::_bind_methods() {}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
#include "behaviour_node.h"
|
||||
#include "behaviour_nodes/behaviour_tree.h"
|
||||
#include "core/config/engine.h"
|
||||
#include "core/object/class_db.h"
|
||||
|
||||
void BehaviourNode::_bind_methods() {
|
||||
BIND_ENUM_CONSTANT(Fail);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
#include "behaviour_tree.h"
|
||||
#include "behaviour_nodes/behaviour_composite.h"
|
||||
#include "behaviour_nodes/behaviour_node.h"
|
||||
#include "behaviour_nodes/control_nodes.h"
|
||||
#include "core/config/engine.h"
|
||||
#include "core/variant/typed_array.h"
|
||||
|
||||
void BehaviourTree::_bind_methods() {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue