Compare commits
No commits in common. "78396708d49076f35e3e21c8e748be2c8750e833" and "49b3a0ad6f8ea8aed281b8fb2d10c1586f926e85" have entirely different histories.
78396708d4
...
49b3a0ad6f
|
@ -187,6 +187,3 @@ godot.creator.*
|
||||||
|
|
||||||
# compile commands (https://clang.llvm.org/docs/JSONCompilationDatabase.html)
|
# compile commands (https://clang.llvm.org/docs/JSONCompilationDatabase.html)
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
|
|
||||||
# clang cache
|
|
||||||
.cache
|
|
||||||
|
|
|
@ -40,10 +40,6 @@ private:
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void set_parent(const Ref<Blackboard> &p_blackboard) { parent = p_blackboard; }
|
void set_parent(const Ref<Blackboard> &p_blackboard) { parent = p_blackboard; }
|
||||||
Ref<Blackboard> get_parent() const { return parent; }
|
Ref<Blackboard> get_parent() const { return parent; }
|
||||||
|
|
|
@ -55,10 +55,6 @@ protected:
|
||||||
bool _property_can_revert(const StringName &p_name) const;
|
bool _property_can_revert(const StringName &p_name) const;
|
||||||
bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
|
bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void set_base_plan(const Ref<BlackboardPlan> &p_base);
|
void set_base_plan(const Ref<BlackboardPlan> &p_base);
|
||||||
Ref<BlackboardPlan> get_base_plan() const { return base; }
|
Ref<BlackboardPlan> get_base_plan() const { return base; }
|
||||||
|
|
|
@ -43,10 +43,6 @@ private:
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
#ifdef LIMBOAI_MODULE
|
#ifdef LIMBOAI_MODULE
|
||||||
virtual bool editor_can_reload_from_file() override { return false; }
|
virtual bool editor_can_reload_from_file() override { return false; }
|
||||||
|
|
|
@ -37,10 +37,6 @@ private:
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
_FORCE_INLINE_ Ref<BTTask> get_root_task() const { return root_task; }
|
_FORCE_INLINE_ Ref<BTTask> get_root_task() const { return root_task; }
|
||||||
_FORCE_INLINE_ Node *get_owner_node() const { return owner_node_id ? Object::cast_to<Node>(OBJECT_DB_GET_INSTANCE(owner_node_id)) : nullptr; }
|
_FORCE_INLINE_ Node *get_owner_node() const { return owner_node_id ? Object::cast_to<Node>(OBJECT_DB_GET_INSTANCE(owner_node_id)) : nullptr; }
|
||||||
|
|
|
@ -56,10 +56,6 @@ protected:
|
||||||
|
|
||||||
void _notification(int p_notification);
|
void _notification(int p_notification);
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return String(get_name()) + ":<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void set_behavior_tree(const Ref<BehaviorTree> &p_tree);
|
void set_behavior_tree(const Ref<BehaviorTree> &p_tree);
|
||||||
Ref<BehaviorTree> get_behavior_tree() const { return behavior_tree; };
|
Ref<BehaviorTree> get_behavior_tree() const { return behavior_tree; };
|
||||||
|
|
|
@ -111,10 +111,6 @@ protected:
|
||||||
GDVIRTUAL1R(Status, _tick, double);
|
GDVIRTUAL1R(Status, _tick, double);
|
||||||
GDVIRTUAL0RC(PackedStringArray, _get_configuration_warnings);
|
GDVIRTUAL0RC(PackedStringArray, _get_configuration_warnings);
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return "<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// TODO: GDExtension doesn't have this method hmm...
|
// TODO: GDExtension doesn't have this method hmm...
|
||||||
|
|
||||||
|
|
|
@ -65,10 +65,6 @@ protected:
|
||||||
GDVIRTUAL0(_exit);
|
GDVIRTUAL0(_exit);
|
||||||
GDVIRTUAL1(_update, double);
|
GDVIRTUAL1(_update, double);
|
||||||
|
|
||||||
#ifdef LIMBOAI_GDEXTENSION
|
|
||||||
String _to_string() const { return String(get_name()) + ":<" + get_class() + "#" + itos(get_instance_id()) + ">"; }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void set_blackboard_plan(const Ref<BlackboardPlan> &p_plan);
|
void set_blackboard_plan(const Ref<BlackboardPlan> &p_plan);
|
||||||
_FORCE_INLINE_ Ref<BlackboardPlan> get_blackboard_plan() const { return blackboard_plan; }
|
_FORCE_INLINE_ Ref<BlackboardPlan> get_blackboard_plan() const { return blackboard_plan; }
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
major = 1
|
major = 1
|
||||||
minor = 2
|
minor = 2
|
||||||
patch = 1
|
patch = 0
|
||||||
status = ""
|
status = ""
|
||||||
doc_branch = "v1.2.0"
|
doc_branch = "v1.2.0"
|
||||||
godot_cpp_ref = "godot-4.3-stable"
|
godot_cpp_ref = "godot-4.3-stable"
|
||||||
|
|
Loading…
Reference in New Issue