godex
godex copied to clipboard
Godex is a Godot Engine ECS library.
Hello again, I am looking to create a game with support of a Godot GDExtension/Addon in combination with Godex. And in order to do that with a modified engine (the...
Hi, Several changes have been made to Godot main branch and has resulted in some build errors. Windows MSVC with debug & release_debug configuration using: Godex Commit: https://github.com/GodotECS/godex/commit/2186bd38900ffba677e51d9ec84944ee64e4a1cc Godot Commit:...
Getting this error when building godot with godex. godotECS/godex/modules/godot/nodes/ecs_world.cpp:744:65: error: 'as_const' is not a member of 'std'; did you mean 'is_const'? 744 | const Storage *storage = std::as_const(world)->get_storage();
- No ECS tab in editor from the latest master from previous version: - Unable to add systems or change their order in "Pipeline view" - Unable to find any...
g++/gcc version: 12.1.0 scons version: 4.3.0 Following the instructions on the README, I've cloned both the godot and godex repositores and applied the patch. When using scons I get an...
From looking at the [Setup](https://github.com/GodotECS/godex/wiki/Setup) and the [Compiling with Mono](https://docs.godotengine.org/en/stable/development/compiling/compiling_with_mono.html) Godot docs page, I ran the following commands to hopefully enable C# support along with Godex: ``scons -j8 p=windows target=release_debug...
When I try to compile with "platform=javascript", which uses emscripten, the compilations fails with multiple errors. The complete log can be found [here](https://gist.github.com/Beliaar/882cecb524ea1cb4714e54d592175ce4), but the main problems are errors similar...
Disable code that references editor specific things when TOOLS_ENABLED is not defined. This allows building of export templates.
Compiling Godex with `use_ubsan=yes use_asan=yes test=yes` on Linux and running tests cause this invalid read ``` ================================================================= ==15399==ERROR: AddressSanitizer: heap-use-after-free on address 0x6060000132a0 at pc 0x000004494b39 bp 0x7ffef7b79940 sp 0x7ffef7b79930...
Add test CI
In this CI, Godex is compiled with address sanitizer. Also editor is opened and closed. As test project I choose - https://github.com/qarmin/RegressionTestProject/ - but it can be removed or changed(new...