Fix export templates build errors
This commit is contained in:
parent
eecf27fdf5
commit
9937f2463b
|
@ -8,7 +8,6 @@
|
|||
#include "core/object.h"
|
||||
#include "modules/limboai/blackboard.h"
|
||||
#include "scene/main/node.h"
|
||||
#include <pulse/proplist.h>
|
||||
|
||||
class BTPlayer : public Node {
|
||||
GDCLASS(BTPlayer, Node);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#ifndef BT_DYNAMIC_SELECTOR_H
|
||||
#define BT_DYNAMIC_SELECTOR_H
|
||||
|
||||
#import "bt_composite.h"
|
||||
#include "bt_composite.h"
|
||||
#include "core/object.h"
|
||||
|
||||
class BTDynamicSelector : public BTComposite {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#ifndef BT_DYNAMIC_SEQUENCE_H
|
||||
#define BT_DYNAMIC_SEQUENCE_H
|
||||
|
||||
#import "bt_composite.h"
|
||||
#include "bt_composite.h"
|
||||
#include "core/object.h"
|
||||
|
||||
class BTDynamicSequence : public BTComposite {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#ifndef BT_SEQUENCE_H
|
||||
#define BT_SEQUENCE_H
|
||||
|
||||
#import "bt_composite.h"
|
||||
#include "bt_composite.h"
|
||||
#include "core/object.h"
|
||||
|
||||
class BTSequence : public BTComposite {
|
||||
|
|
|
@ -97,9 +97,9 @@ void register_limboai_types() {
|
|||
|
||||
_limbo_utility = memnew(LimboUtility);
|
||||
ClassDB::register_class<LimboUtility>();
|
||||
Engine::get_singleton()->add_singleton(Engine::Singleton("LimboUtility", LimboUtility::get_singleton()));
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
Engine::get_singleton()->add_singleton(Engine::Singleton("LimboUtility", LimboUtility::get_singleton()));
|
||||
EditorPlugins::add_by_type<LimboAIEditorPlugin>();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue