feat: initialized template
This commit is contained in:
parent
2d7050a065
commit
aa73b9fc58
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -8,7 +8,7 @@ config.log
|
||||||
|
|
||||||
engine/.github
|
engine/.github
|
||||||
project/.godot
|
project/.godot
|
||||||
build/PROJECT.pck
|
build/going.pck
|
||||||
build/PROJECT.x86_64
|
build/going.x86_64
|
||||||
build/PROJECT.exe
|
build/going.exe
|
||||||
build.zip
|
build.zip
|
||||||
|
|
2
justfile
2
justfile
|
@ -1,6 +1,6 @@
|
||||||
set export
|
set export
|
||||||
|
|
||||||
BUILD_NAME := "change_me"
|
BUILD_NAME := "going"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
cd engine/ && scons target=editor symbols=yes optimization=debug dev_build=yes linker=mold use_llvm=yes compiledb=yes custom_modules="../modules"
|
cd engine/ && scons target=editor symbols=yes optimization=debug dev_build=yes linker=mold use_llvm=yes compiledb=yes custom_modules="../modules"
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#ifndef PROJECT_REGISTER_TYPES_H
|
|
||||||
#define PROJECT_REGISTER_TYPES_H
|
|
||||||
|
|
||||||
#include "modules/register_module_types.h"
|
|
||||||
|
|
||||||
void initialize_PROJECT_module(ModuleInitializationLevel p_level);
|
|
||||||
void uninitialize_PROJECT_module(ModuleInitializationLevel p_level);
|
|
||||||
|
|
||||||
#endif // !PROJECT_REGISTER_TYPES_H
|
|
BIN
modules/going/__pycache__/config.cpython-313.pyc
Normal file
BIN
modules/going/__pycache__/config.cpython-313.pyc
Normal file
Binary file not shown.
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
#include "core/object/class_db.h"
|
#include "core/object/class_db.h"
|
||||||
|
|
||||||
void initialize_PROJECT_module(ModuleInitializationLevel p_level) {
|
void initialize_going_module(ModuleInitializationLevel p_level) {
|
||||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void uninitialize_PROJECT_module(ModuleInitializationLevel p_level) {
|
void uninitialize_going_module(ModuleInitializationLevel p_level) {
|
||||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
9
modules/going/register_types.h
Normal file
9
modules/going/register_types.h
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef going_REGISTER_TYPES_H
|
||||||
|
#define going_REGISTER_TYPES_H
|
||||||
|
|
||||||
|
#include "modules/register_module_types.h"
|
||||||
|
|
||||||
|
void initialize_going_module(ModuleInitializationLevel p_level);
|
||||||
|
void uninitialize_going_module(ModuleInitializationLevel p_level);
|
||||||
|
|
||||||
|
#endif // !going_REGISTER_TYPES_H
|
|
@ -9,7 +9,7 @@ custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path="../build/PROJECT.x86_64"
|
export_path="../build/going.x86_64"
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
|
@ -51,7 +51,7 @@ custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path="../build/PROJECT.exe"
|
export_path="../build/going.exe"
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
|
|
|
@ -10,6 +10,6 @@ config_version=5
|
||||||
|
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="PROJECT"
|
config/name="going"
|
||||||
config/features=PackedStringArray("4.4", "Forward Plus")
|
config/features=PackedStringArray("4.4", "Forward Plus")
|
||||||
config/icon="res://icon.svg"
|
config/icon="res://icon.svg"
|
||||||
|
|
Loading…
Reference in a new issue