├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── docs ├── _config.yml ├── demo_emscripten_gles3.js ├── demo_emscripten_gles3.wasm └── index.html ├── external ├── entt │ ├── CMakeLists.txt │ ├── LICENSE │ └── single_include │ │ └── entt │ │ └── entt.hpp ├── glad │ ├── CMakeLists.txt │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c └── imgui │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── impl │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_sdl.cpp │ └── imgui_impl_sdl.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── imgui_entt_entity_editor_clone0.gif ├── imgui_entt_entity_editor_clone0.mp4 ├── imgui_entt_entity_editor_dnd0.gif ├── imgui_entt_entity_editor_screenshot0.png ├── imgui_entt_entity_editor_screenshot1.png └── src ├── CMakeLists.txt ├── demo_sdl_opengl3 ├── CMakeLists.txt └── main.cpp ├── emscripten ├── CMakeLists.txt ├── main.cpp └── shell_minimal.html └── systems ├── CMakeLists.txt ├── velocity.cpp └── velocity.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/demo_emscripten_gles3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/docs/demo_emscripten_gles3.js -------------------------------------------------------------------------------- /docs/demo_emscripten_gles3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/docs/demo_emscripten_gles3.wasm -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/docs/index.html -------------------------------------------------------------------------------- /external/entt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/entt/CMakeLists.txt -------------------------------------------------------------------------------- /external/entt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/entt/LICENSE -------------------------------------------------------------------------------- /external/entt/single_include/entt/entt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/entt/single_include/entt/entt.hpp -------------------------------------------------------------------------------- /external/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/glad/CMakeLists.txt -------------------------------------------------------------------------------- /external/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /external/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/glad/include/glad/glad.h -------------------------------------------------------------------------------- /external/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/glad/src/glad.c -------------------------------------------------------------------------------- /external/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /external/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/LICENSE.txt -------------------------------------------------------------------------------- /external/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imconfig.h -------------------------------------------------------------------------------- /external/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui.cpp -------------------------------------------------------------------------------- /external/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui.h -------------------------------------------------------------------------------- /external/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui_internal.h -------------------------------------------------------------------------------- /external/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /external/imgui/impl/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/impl/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /external/imgui/impl/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/impl/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /external/imgui/impl/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/impl/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /external/imgui/impl/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/impl/imgui_impl_sdl.h -------------------------------------------------------------------------------- /external/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /external/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /external/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/external/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /imgui_entt_entity_editor_clone0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/imgui_entt_entity_editor_clone0.gif -------------------------------------------------------------------------------- /imgui_entt_entity_editor_clone0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/imgui_entt_entity_editor_clone0.mp4 -------------------------------------------------------------------------------- /imgui_entt_entity_editor_dnd0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/imgui_entt_entity_editor_dnd0.gif -------------------------------------------------------------------------------- /imgui_entt_entity_editor_screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/imgui_entt_entity_editor_screenshot0.png -------------------------------------------------------------------------------- /imgui_entt_entity_editor_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/imgui_entt_entity_editor_screenshot1.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/demo_sdl_opengl3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/demo_sdl_opengl3/CMakeLists.txt -------------------------------------------------------------------------------- /src/demo_sdl_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/demo_sdl_opengl3/main.cpp -------------------------------------------------------------------------------- /src/emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /src/emscripten/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/emscripten/main.cpp -------------------------------------------------------------------------------- /src/emscripten/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/emscripten/shell_minimal.html -------------------------------------------------------------------------------- /src/systems/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/systems/CMakeLists.txt -------------------------------------------------------------------------------- /src/systems/velocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/systems/velocity.cpp -------------------------------------------------------------------------------- /src/systems/velocity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/imgui_entt_entity_editor_demo/HEAD/src/systems/velocity.hpp --------------------------------------------------------------------------------