├── .gitattributes ├── .gitignore ├── .sconsign.dblite ├── .vscode ├── settings.json └── tasks.json ├── README.md ├── SConstruct ├── demo ├── .gitattributes ├── .gitignore ├── addons │ ├── debug_draw_3d │ │ ├── LICENSE │ │ ├── README.md │ │ ├── debug_draw_3d.gdextension │ │ └── libs │ │ │ ├── .gdignore │ │ │ ├── libdd3d.android.template_debug.arm32.so │ │ │ ├── libdd3d.android.template_debug.arm64.so │ │ │ ├── libdd3d.android.template_debug.x86_32.so │ │ │ ├── libdd3d.android.template_debug.x86_64.so │ │ │ ├── libdd3d.android.template_release.arm32.so │ │ │ ├── libdd3d.android.template_release.arm64.so │ │ │ ├── libdd3d.android.template_release.x86_32.so │ │ │ ├── libdd3d.android.template_release.x86_64.so │ │ │ ├── libdd3d.ios.template_debug.universal.dylib │ │ │ ├── libdd3d.ios.template_release.universal.dylib │ │ │ ├── libdd3d.ios.template_release.universal.enabled.dylib │ │ │ ├── libdd3d.linux.editor.x86_64.so │ │ │ ├── libdd3d.linux.template_release.x86_64.enabled.so │ │ │ ├── libdd3d.linux.template_release.x86_64.so │ │ │ ├── libdd3d.macos.editor.universal.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── libdd3d.macos.editor.universal.dylib │ │ │ ├── libdd3d.macos.template_release.universal.enabled.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── libdd3d.macos.template_release.universal.enabled.dylib │ │ │ ├── libdd3d.macos.template_release.universal.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── libdd3d.macos.template_release.universal.dylib │ │ │ ├── libdd3d.web.template_debug.wasm32.threads.wasm │ │ │ ├── libdd3d.web.template_debug.wasm32.wasm │ │ │ ├── libdd3d.web.template_release.wasm32.enabled.wasm │ │ │ ├── libdd3d.web.template_release.wasm32.threads.enabled.wasm │ │ │ ├── libdd3d.web.template_release.wasm32.threads.wasm │ │ │ ├── libdd3d.web.template_release.wasm32.wasm │ │ │ ├── libdd3d.windows.editor.x86_64.dll │ │ │ ├── libdd3d.windows.template_release.x86_64.dll │ │ │ └── libdd3d.windows.template_release.x86_64.enabled.dll │ ├── editor_icon_previewer │ │ ├── LICENSE.md │ │ ├── editor_icon_previewer.gd │ │ ├── editor_icon_window.gd │ │ ├── editor_icon_window.tscn │ │ ├── icon.png │ │ ├── icon.png.import │ │ └── plugin.cfg │ ├── fabimakesgames.embed_game.zip │ ├── fabimakesgames.embed_game │ │ ├── assets │ │ │ ├── icon.aseprite │ │ │ ├── icon.png │ │ │ └── icon.png.import │ │ ├── bin │ │ │ ├── embed_game.gdextension │ │ │ ├── embed_game.windows.template_debug.x86_64.dll │ │ │ ├── embed_game.windows.template_debug.x86_64.exp │ │ │ └── embed_game.windows.template_debug.x86_64.lib │ │ ├── config │ │ │ └── embed_shortcut.tres │ │ ├── embed_button.tscn │ │ ├── embed_game.gd │ │ ├── embed_game_autoload.gd │ │ └── plugin.cfg │ ├── godot-jolt │ │ ├── LICENSE.txt │ │ ├── THIRDPARTY.txt │ │ ├── android │ │ │ ├── libgodot-jolt_android-arm32.so │ │ │ ├── libgodot-jolt_android-arm32_editor.so │ │ │ ├── libgodot-jolt_android-arm64.so │ │ │ ├── libgodot-jolt_android-arm64_editor.so │ │ │ ├── libgodot-jolt_android-x64.so │ │ │ ├── libgodot-jolt_android-x64_editor.so │ │ │ ├── libgodot-jolt_android-x86.so │ │ │ └── libgodot-jolt_android-x86_editor.so │ │ ├── godot-jolt.gdextension │ │ ├── ios │ │ │ ├── godot-jolt_ios.framework │ │ │ │ ├── Info.plist │ │ │ │ └── godot-jolt_ios │ │ │ └── godot-jolt_ios_editor.framework │ │ │ │ ├── Info.plist │ │ │ │ └── godot-jolt_ios_editor │ │ ├── linux │ │ │ ├── godot-jolt_linux-x64.so │ │ │ ├── godot-jolt_linux-x64_editor.so │ │ │ ├── godot-jolt_linux-x86.so │ │ │ └── godot-jolt_linux-x86_editor.so │ │ ├── macos │ │ │ ├── godot-jolt_macos.framework │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── godot-jolt_macos │ │ │ └── godot-jolt_macos_editor.framework │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ │ └── godot-jolt_macos_editor │ │ └── windows │ │ │ ├── godot-jolt_windows-x64.dll │ │ │ ├── godot-jolt_windows-x64_editor.dll │ │ │ ├── godot-jolt_windows-x86.dll │ │ │ ├── godot-jolt_windows-x86_editor.dll │ │ │ └── ~godot-jolt_windows-x64_editor.dll~RF27159d.TMP │ ├── kenyoni │ │ └── plugin_reloader │ │ │ ├── LICENSE.md │ │ │ ├── internal │ │ │ ├── reloader.gd │ │ │ └── reloader.tscn │ │ │ ├── plugin.cfg │ │ │ └── plugin.gd │ └── zylann.editor_debugger │ │ ├── LICENSE.md │ │ ├── dock.gd │ │ ├── dock.tscn │ │ ├── plugin.cfg │ │ ├── plugin.gd │ │ └── util.gd ├── icon.svg ├── icon.svg.import ├── main.gd ├── main.tscn ├── project.godot └── test_scene │ └── test_scene.tscn ├── godot-cpp ├── .clang-format ├── .editorconfig ├── .gdignore ├── .gitattributes ├── .github │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.yml │ │ └── config.yml │ ├── actions │ │ ├── godot-cache-restore │ │ │ └── action.yml │ │ └── godot-cache-save │ │ │ └── action.yml │ ├── dependabot.yml │ └── workflows │ │ ├── ci.yml │ │ └── static_checks.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── LICENSE.md ├── Makefile ├── README.md ├── SConstruct ├── binding_generator.py ├── cmake │ └── GodotCompilerWarnings.cmake ├── gdextension │ ├── README.md │ ├── extension_api.json │ └── gdextension_interface.h ├── include │ └── godot_cpp │ │ ├── classes │ │ ├── editor_plugin_registration.hpp │ │ ├── ref.hpp │ │ └── wrapped.hpp │ │ ├── core │ │ ├── binder_common.hpp │ │ ├── builtin_ptrcall.hpp │ │ ├── class_db.hpp │ │ ├── defs.hpp │ │ ├── engine_ptrcall.hpp │ │ ├── error_macros.hpp │ │ ├── math.hpp │ │ ├── memory.hpp │ │ ├── method_bind.hpp │ │ ├── method_ptrcall.hpp │ │ ├── mutex_lock.hpp │ │ ├── object.hpp │ │ ├── object_id.hpp │ │ ├── property_info.hpp │ │ └── type_info.hpp │ │ ├── godot.hpp │ │ ├── templates │ │ ├── cowdata.hpp │ │ ├── hash_map.hpp │ │ ├── hash_set.hpp │ │ ├── hashfuncs.hpp │ │ ├── list.hpp │ │ ├── local_vector.hpp │ │ ├── pair.hpp │ │ ├── rb_map.hpp │ │ ├── rb_set.hpp │ │ ├── rid_owner.hpp │ │ ├── safe_refcount.hpp │ │ ├── search_array.hpp │ │ ├── self_list.hpp │ │ ├── sort_array.hpp │ │ ├── spin_lock.hpp │ │ ├── thread_work_pool.hpp │ │ ├── vector.hpp │ │ ├── vmap.hpp │ │ └── vset.hpp │ │ └── variant │ │ ├── aabb.hpp │ │ ├── array_helpers.hpp │ │ ├── basis.hpp │ │ ├── callable_custom.hpp │ │ ├── callable_method_pointer.hpp │ │ ├── char_string.hpp │ │ ├── char_utils.hpp │ │ ├── color.hpp │ │ ├── color_names.inc.hpp │ │ ├── plane.hpp │ │ ├── projection.hpp │ │ ├── quaternion.hpp │ │ ├── rect2.hpp │ │ ├── rect2i.hpp │ │ ├── transform2d.hpp │ │ ├── transform3d.hpp │ │ ├── typed_array.hpp │ │ ├── variant.hpp │ │ ├── vector2.hpp │ │ ├── vector2i.hpp │ │ ├── vector3.hpp │ │ ├── vector3i.hpp │ │ ├── vector4.hpp │ │ └── vector4i.hpp ├── misc │ ├── ci │ │ └── sources.list │ └── scripts │ │ ├── check_ci_log.py │ │ ├── check_get_file_list.py │ │ ├── copyright_headers.py │ │ ├── file_format.py │ │ ├── header_guards.py │ │ └── make_tarball.sh ├── pyproject.toml ├── src │ ├── classes │ │ ├── editor_plugin_registration.cpp │ │ ├── low_level.cpp │ │ └── wrapped.cpp │ ├── core │ │ ├── class_db.cpp │ │ ├── error_macros.cpp │ │ ├── memory.cpp │ │ ├── method_bind.cpp │ │ └── object.cpp │ ├── godot.cpp │ └── variant │ │ ├── aabb.cpp │ │ ├── basis.cpp │ │ ├── callable_custom.cpp │ │ ├── callable_method_pointer.cpp │ │ ├── char_string.cpp │ │ ├── color.cpp │ │ ├── packed_arrays.cpp │ │ ├── plane.cpp │ │ ├── projection.cpp │ │ ├── quaternion.cpp │ │ ├── rect2.cpp │ │ ├── rect2i.cpp │ │ ├── transform2d.cpp │ │ ├── transform3d.cpp │ │ ├── variant.cpp │ │ ├── vector2.cpp │ │ ├── vector2i.cpp │ │ ├── vector3.cpp │ │ ├── vector3i.cpp │ │ ├── vector4.cpp │ │ └── vector4i.cpp ├── test │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── SConstruct │ ├── build_profile.json │ ├── doc_classes │ │ └── Example.xml │ ├── generate_xcframework.sh │ ├── project │ │ ├── default_env.tres │ │ ├── example.gd │ │ ├── example.gdextension │ │ ├── icon.png │ │ ├── icon.png.import │ │ ├── main.gd │ │ ├── main.tscn │ │ ├── project.godot │ │ └── test_base.gd │ ├── run-tests.sh │ └── src │ │ ├── example.cpp │ │ ├── example.h │ │ ├── register_types.cpp │ │ ├── register_types.h │ │ └── tests.h └── tools │ ├── android.py │ ├── common_compiler_flags.py │ ├── godotcpp.py │ ├── ios.py │ ├── linux.py │ ├── macos.py │ ├── my_spawn.py │ ├── web.py │ └── windows.py └── src ├── embed_game.cpp ├── embed_game.h ├── embed_game.windows.template_debug.x86_64.obj ├── embed_window.windows.template_debug.x86_64.obj ├── embed_window_register_types.windows.template_debug.x86_64.obj ├── gdexample.windows.template_debug.x86_64.obj ├── register_types.cpp ├── register_types.h └── register_types.windows.template_debug.x86_64.obj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/.gitignore -------------------------------------------------------------------------------- /.sconsign.dblite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/.sconsign.dblite -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/SConstruct -------------------------------------------------------------------------------- /demo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/.gitattributes -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | /android/ 4 | -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/LICENSE -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/README.md -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/debug_draw_3d.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/debug_draw_3d.gdextension -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.arm32.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.arm64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.x86_32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.x86_32.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_debug.x86_64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.arm32.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.arm64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_32.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.ios.template_debug.universal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.ios.template_debug.universal.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.enabled.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.enabled.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.linux.editor.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.linux.editor.x86_64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.linux.template_release.x86_64.enabled.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.linux.template_release.x86_64.enabled.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.linux.template_release.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.linux.template_release.x86_64.so -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.editor.universal.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.editor.universal.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.editor.universal.framework/libdd3d.macos.editor.universal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.editor.universal.framework/libdd3d.macos.editor.universal.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.enabled.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.enabled.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.enabled.framework/libdd3d.macos.template_release.universal.enabled.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.enabled.framework/libdd3d.macos.template_release.universal.enabled.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.framework/libdd3d.macos.template_release.universal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.macos.template_release.universal.framework/libdd3d.macos.template_release.universal.dylib -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_debug.wasm32.threads.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_debug.wasm32.threads.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_debug.wasm32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_debug.wasm32.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.enabled.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.enabled.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.threads.enabled.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.threads.enabled.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.threads.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.threads.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.web.template_release.wasm32.wasm -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.windows.editor.x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.windows.editor.x86_64.dll -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.windows.template_release.x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.windows.template_release.x86_64.dll -------------------------------------------------------------------------------- /demo/addons/debug_draw_3d/libs/libdd3d.windows.template_release.x86_64.enabled.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/debug_draw_3d/libs/libdd3d.windows.template_release.x86_64.enabled.dll -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/LICENSE.md -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/editor_icon_previewer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/editor_icon_previewer.gd -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/editor_icon_window.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/editor_icon_window.gd -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/editor_icon_window.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/editor_icon_window.tscn -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/icon.png -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/icon.png.import -------------------------------------------------------------------------------- /demo/addons/editor_icon_previewer/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/editor_icon_previewer/plugin.cfg -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game.zip -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/assets/icon.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/assets/icon.aseprite -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/assets/icon.png -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/assets/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/assets/icon.png.import -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/bin/embed_game.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/bin/embed_game.gdextension -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.dll -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.exp -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/bin/embed_game.windows.template_debug.x86_64.lib -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/config/embed_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/config/embed_shortcut.tres -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/embed_button.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/embed_button.tscn -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/embed_game.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/embed_game.gd -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/embed_game_autoload.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/embed_game_autoload.gd -------------------------------------------------------------------------------- /demo/addons/fabimakesgames.embed_game/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/fabimakesgames.embed_game/plugin.cfg -------------------------------------------------------------------------------- /demo/addons/godot-jolt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/LICENSE.txt -------------------------------------------------------------------------------- /demo/addons/godot-jolt/THIRDPARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/THIRDPARTY.txt -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-arm32.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-arm64.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-x64.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-x86.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/godot-jolt.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/godot-jolt.gdextension -------------------------------------------------------------------------------- /demo/addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist -------------------------------------------------------------------------------- /demo/addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios -------------------------------------------------------------------------------- /demo/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist -------------------------------------------------------------------------------- /demo/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor -------------------------------------------------------------------------------- /demo/addons/godot-jolt/linux/godot-jolt_linux-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/linux/godot-jolt_linux-x64.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/linux/godot-jolt_linux-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/linux/godot-jolt_linux-x86.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor -------------------------------------------------------------------------------- /demo/addons/godot-jolt/windows/godot-jolt_windows-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/windows/godot-jolt_windows-x64.dll -------------------------------------------------------------------------------- /demo/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll -------------------------------------------------------------------------------- /demo/addons/godot-jolt/windows/godot-jolt_windows-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/windows/godot-jolt_windows-x86.dll -------------------------------------------------------------------------------- /demo/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll -------------------------------------------------------------------------------- /demo/addons/godot-jolt/windows/~godot-jolt_windows-x64_editor.dll~RF27159d.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/godot-jolt/windows/~godot-jolt_windows-x64_editor.dll~RF27159d.TMP -------------------------------------------------------------------------------- /demo/addons/kenyoni/plugin_reloader/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/kenyoni/plugin_reloader/LICENSE.md -------------------------------------------------------------------------------- /demo/addons/kenyoni/plugin_reloader/internal/reloader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/kenyoni/plugin_reloader/internal/reloader.gd -------------------------------------------------------------------------------- /demo/addons/kenyoni/plugin_reloader/internal/reloader.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/kenyoni/plugin_reloader/internal/reloader.tscn -------------------------------------------------------------------------------- /demo/addons/kenyoni/plugin_reloader/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/kenyoni/plugin_reloader/plugin.cfg -------------------------------------------------------------------------------- /demo/addons/kenyoni/plugin_reloader/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/kenyoni/plugin_reloader/plugin.gd -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/LICENSE.md -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/dock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/dock.gd -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/dock.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/dock.tscn -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/plugin.cfg -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/plugin.gd -------------------------------------------------------------------------------- /demo/addons/zylann.editor_debugger/util.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/addons/zylann.editor_debugger/util.gd -------------------------------------------------------------------------------- /demo/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/icon.svg -------------------------------------------------------------------------------- /demo/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/icon.svg.import -------------------------------------------------------------------------------- /demo/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/main.gd -------------------------------------------------------------------------------- /demo/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/main.tscn -------------------------------------------------------------------------------- /demo/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/project.godot -------------------------------------------------------------------------------- /demo/test_scene/test_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/demo/test_scene/test_scene.tscn -------------------------------------------------------------------------------- /godot-cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.clang-format -------------------------------------------------------------------------------- /godot-cpp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.editorconfig -------------------------------------------------------------------------------- /godot-cpp/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /godot-cpp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.gitattributes -------------------------------------------------------------------------------- /godot-cpp/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/CODEOWNERS -------------------------------------------------------------------------------- /godot-cpp/.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /godot-cpp/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /godot-cpp/.github/actions/godot-cache-restore/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/actions/godot-cache-restore/action.yml -------------------------------------------------------------------------------- /godot-cpp/.github/actions/godot-cache-save/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/actions/godot-cache-save/action.yml -------------------------------------------------------------------------------- /godot-cpp/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/dependabot.yml -------------------------------------------------------------------------------- /godot-cpp/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/workflows/ci.yml -------------------------------------------------------------------------------- /godot-cpp/.github/workflows/static_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.github/workflows/static_checks.yml -------------------------------------------------------------------------------- /godot-cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.gitignore -------------------------------------------------------------------------------- /godot-cpp/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /godot-cpp/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/.pre-commit-config.yaml -------------------------------------------------------------------------------- /godot-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /godot-cpp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/LICENSE.md -------------------------------------------------------------------------------- /godot-cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/Makefile -------------------------------------------------------------------------------- /godot-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/README.md -------------------------------------------------------------------------------- /godot-cpp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/SConstruct -------------------------------------------------------------------------------- /godot-cpp/binding_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/binding_generator.py -------------------------------------------------------------------------------- /godot-cpp/cmake/GodotCompilerWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/cmake/GodotCompilerWarnings.cmake -------------------------------------------------------------------------------- /godot-cpp/gdextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/gdextension/README.md -------------------------------------------------------------------------------- /godot-cpp/gdextension/extension_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/gdextension/extension_api.json -------------------------------------------------------------------------------- /godot-cpp/gdextension/gdextension_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/gdextension/gdextension_interface.h -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/classes/editor_plugin_registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/classes/editor_plugin_registration.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/classes/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/classes/ref.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/classes/wrapped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/classes/wrapped.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/binder_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/binder_common.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/builtin_ptrcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/builtin_ptrcall.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/class_db.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/class_db.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/defs.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/engine_ptrcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/engine_ptrcall.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/error_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/error_macros.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/math.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/memory.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/method_bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/method_bind.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/method_ptrcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/mutex_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/mutex_lock.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/object.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/object_id.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/property_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/property_info.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/core/type_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/core/type_info.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/godot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/godot.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/cowdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/cowdata.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/hash_map.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/hash_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/hash_set.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/hashfuncs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/hashfuncs.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/list.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/local_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/local_vector.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/pair.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/rb_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/rb_map.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/rb_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/rb_set.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/rid_owner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/rid_owner.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/safe_refcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/search_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/search_array.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/self_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/self_list.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/sort_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/sort_array.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/spin_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/spin_lock.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/thread_work_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/thread_work_pool.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/vector.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/vmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/vmap.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/templates/vset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/templates/vset.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/aabb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/aabb.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/array_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/array_helpers.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/basis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/basis.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/callable_custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/callable_custom.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/callable_method_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/callable_method_pointer.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/char_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/char_string.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/char_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/char_utils.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/color.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/color_names.inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/color_names.inc.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/plane.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/projection.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/quaternion.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/rect2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/rect2.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/rect2i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/rect2i.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/transform2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/transform2d.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/transform3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/transform3d.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/typed_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/typed_array.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/variant.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector2.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector2i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector2i.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector3.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector3i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector3i.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector4.hpp -------------------------------------------------------------------------------- /godot-cpp/include/godot_cpp/variant/vector4i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/include/godot_cpp/variant/vector4i.hpp -------------------------------------------------------------------------------- /godot-cpp/misc/ci/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/ci/sources.list -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/check_ci_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/check_ci_log.py -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/check_get_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/check_get_file_list.py -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/copyright_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/copyright_headers.py -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/file_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/file_format.py -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/header_guards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/header_guards.py -------------------------------------------------------------------------------- /godot-cpp/misc/scripts/make_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/misc/scripts/make_tarball.sh -------------------------------------------------------------------------------- /godot-cpp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/pyproject.toml -------------------------------------------------------------------------------- /godot-cpp/src/classes/editor_plugin_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/classes/editor_plugin_registration.cpp -------------------------------------------------------------------------------- /godot-cpp/src/classes/low_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/classes/low_level.cpp -------------------------------------------------------------------------------- /godot-cpp/src/classes/wrapped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/classes/wrapped.cpp -------------------------------------------------------------------------------- /godot-cpp/src/core/class_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/core/class_db.cpp -------------------------------------------------------------------------------- /godot-cpp/src/core/error_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/core/error_macros.cpp -------------------------------------------------------------------------------- /godot-cpp/src/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/core/memory.cpp -------------------------------------------------------------------------------- /godot-cpp/src/core/method_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/core/method_bind.cpp -------------------------------------------------------------------------------- /godot-cpp/src/core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/core/object.cpp -------------------------------------------------------------------------------- /godot-cpp/src/godot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/godot.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/aabb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/aabb.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/basis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/basis.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/callable_custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/callable_custom.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/callable_method_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/callable_method_pointer.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/char_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/char_string.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/color.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/packed_arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/packed_arrays.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/plane.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/projection.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/quaternion.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/rect2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/rect2.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/rect2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/rect2i.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/transform2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/transform2d.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/transform3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/transform3d.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/variant.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector2.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector2i.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector3.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector3i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector3i.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector4.cpp -------------------------------------------------------------------------------- /godot-cpp/src/variant/vector4i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/src/variant/vector4i.cpp -------------------------------------------------------------------------------- /godot-cpp/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/.gitignore -------------------------------------------------------------------------------- /godot-cpp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/CMakeLists.txt -------------------------------------------------------------------------------- /godot-cpp/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/README.md -------------------------------------------------------------------------------- /godot-cpp/test/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/SConstruct -------------------------------------------------------------------------------- /godot-cpp/test/build_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/build_profile.json -------------------------------------------------------------------------------- /godot-cpp/test/doc_classes/Example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/doc_classes/Example.xml -------------------------------------------------------------------------------- /godot-cpp/test/generate_xcframework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/generate_xcframework.sh -------------------------------------------------------------------------------- /godot-cpp/test/project/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/default_env.tres -------------------------------------------------------------------------------- /godot-cpp/test/project/example.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/example.gd -------------------------------------------------------------------------------- /godot-cpp/test/project/example.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/example.gdextension -------------------------------------------------------------------------------- /godot-cpp/test/project/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/icon.png -------------------------------------------------------------------------------- /godot-cpp/test/project/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/icon.png.import -------------------------------------------------------------------------------- /godot-cpp/test/project/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/main.gd -------------------------------------------------------------------------------- /godot-cpp/test/project/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/main.tscn -------------------------------------------------------------------------------- /godot-cpp/test/project/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/project.godot -------------------------------------------------------------------------------- /godot-cpp/test/project/test_base.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/project/test_base.gd -------------------------------------------------------------------------------- /godot-cpp/test/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/run-tests.sh -------------------------------------------------------------------------------- /godot-cpp/test/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/src/example.cpp -------------------------------------------------------------------------------- /godot-cpp/test/src/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/src/example.h -------------------------------------------------------------------------------- /godot-cpp/test/src/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/src/register_types.cpp -------------------------------------------------------------------------------- /godot-cpp/test/src/register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/src/register_types.h -------------------------------------------------------------------------------- /godot-cpp/test/src/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/test/src/tests.h -------------------------------------------------------------------------------- /godot-cpp/tools/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/android.py -------------------------------------------------------------------------------- /godot-cpp/tools/common_compiler_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/common_compiler_flags.py -------------------------------------------------------------------------------- /godot-cpp/tools/godotcpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/godotcpp.py -------------------------------------------------------------------------------- /godot-cpp/tools/ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/ios.py -------------------------------------------------------------------------------- /godot-cpp/tools/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/linux.py -------------------------------------------------------------------------------- /godot-cpp/tools/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/macos.py -------------------------------------------------------------------------------- /godot-cpp/tools/my_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/my_spawn.py -------------------------------------------------------------------------------- /godot-cpp/tools/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/web.py -------------------------------------------------------------------------------- /godot-cpp/tools/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/godot-cpp/tools/windows.py -------------------------------------------------------------------------------- /src/embed_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/embed_game.cpp -------------------------------------------------------------------------------- /src/embed_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/embed_game.h -------------------------------------------------------------------------------- /src/embed_game.windows.template_debug.x86_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/embed_game.windows.template_debug.x86_64.obj -------------------------------------------------------------------------------- /src/embed_window.windows.template_debug.x86_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/embed_window.windows.template_debug.x86_64.obj -------------------------------------------------------------------------------- /src/embed_window_register_types.windows.template_debug.x86_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/embed_window_register_types.windows.template_debug.x86_64.obj -------------------------------------------------------------------------------- /src/gdexample.windows.template_debug.x86_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/gdexample.windows.template_debug.x86_64.obj -------------------------------------------------------------------------------- /src/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/register_types.cpp -------------------------------------------------------------------------------- /src/register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/register_types.h -------------------------------------------------------------------------------- /src/register_types.windows.template_debug.x86_64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nan0m/EmbedGame/HEAD/src/register_types.windows.template_debug.x86_64.obj --------------------------------------------------------------------------------