Bind signal - BTPlayer

This commit is contained in:
Serhii Snitsaruk 2022-08-31 17:50:49 +02:00
parent 3393ed24d7
commit d128bdf8f6
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include "core/engine.h" #include "core/engine.h"
#include "core/io/resource_loader.h" #include "core/io/resource_loader.h"
#include "core/object.h" #include "core/object.h"
#include "core/variant.h"
#include <cstddef> #include <cstddef>
VARIANT_ENUM_CAST(BTPlayer::UpdateMode); VARIANT_ENUM_CAST(BTPlayer::UpdateMode);
@ -108,4 +109,6 @@ void BTPlayer::_bind_methods() {
BIND_ENUM_CONSTANT(IDLE); BIND_ENUM_CONSTANT(IDLE);
BIND_ENUM_CONSTANT(PHYSICS); BIND_ENUM_CONSTANT(PHYSICS);
BIND_ENUM_CONSTANT(MANUAL); BIND_ENUM_CONSTANT(MANUAL);
ADD_SIGNAL(MethodInfo("behavior_tree_finished", PropertyInfo(Variant::INT, "p_status")));
} }