feat: new Behaviour nodes module

This commit is contained in:
Sara Gerretsen 2026-03-10 13:07:41 +01:00
parent 01d57480c5
commit fc11921776
4 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,3 @@
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View file

@ -0,0 +1,5 @@
def can_build(env, platform):
return True;
def configure(env):
pass;

View file

@ -0,0 +1,13 @@
#include "behaviour_nodes/register_types.h"
void initialize_behaviour_nodes_module(ModuleInitializationLevel p_level) {
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
return;
}
}
void uninitialize_behaviour_nodes_module(ModuleInitializationLevel p_level) {
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
return;
}
}

View file

@ -0,0 +1,9 @@
#ifndef BEHAVIOUR_NODES_REGISTER_TYPES_H
#define BEHAVIOUR_NODES_REGISTER_TYPES_H
#include "modules/register_module_types.h"
void initialize_behaviour_nodes_module(ModuleInitializationLevel p_level);
void uninitialize_behaviour_nodes_module(ModuleInitializationLevel p_level);
#endif // !BEHAVIOUR_NODES_REGISTER_TYPES_H