Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
.vs
build
build-debug
build-release
build-release
debug
release
editor_debug
editor_release
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@
[submodule "docs/css/doxygen-awesome-css"]
path = docs/css/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
[submodule "engine/thirdparty/imgui"]
path = engine/thirdparty/imgui
url = https://github.com/ocornut/imgui.git
[submodule "engine/thirdparty/ImGuizmo"]
path = engine/thirdparty/ImGuizmo
url = https://github.com/CedricGuillemet/ImGuizmo.git
8 changes: 1 addition & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,8 @@ project(XPE-Engine)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O3")

# Add Loader
add_subdirectory(loader)

# Add Engine
add_subdirectory(engine)

# Add Samples
add_subdirectory(samples)

# Add cEditor
# add_subdirectory(editor)
add_subdirectory(samples)
37 changes: 0 additions & 37 deletions editor/CMakeLists.txt

This file was deleted.

29 changes: 0 additions & 29 deletions editor/config/editor_config.json

This file was deleted.

Binary file removed editor/res/fonts/Roboto-Bold.ttf
Binary file not shown.
Binary file removed editor/res/fonts/Roboto-Italic.ttf
Binary file not shown.
Binary file removed editor/res/materials/steel/albedo.png
Binary file not shown.
Binary file removed editor/res/materials/steel/ao.png
Binary file not shown.
Binary file removed editor/res/materials/steel/bump.png
Binary file not shown.
Binary file removed editor/res/materials/steel/height.png
Binary file not shown.
Binary file removed editor/res/materials/steel/metallic.png
Binary file not shown.
Binary file removed editor/res/materials/steel/preview.jpg
Binary file not shown.
Binary file removed editor/res/materials/steel/roughness.png
Binary file not shown.
Binary file removed editor/res/models/cube.bin
Binary file not shown.
104 changes: 0 additions & 104 deletions editor/res/models/cube.gltf

This file was deleted.

Binary file removed editor/res/skybox/back.jpg
Binary file not shown.
Binary file removed editor/res/skybox/bottom.jpg
Binary file not shown.
Binary file removed editor/res/skybox/front.jpg
Binary file not shown.
Binary file removed editor/res/skybox/left.jpg
Binary file not shown.
Binary file removed editor/res/skybox/right.jpg
Binary file not shown.
Binary file removed editor/res/skybox/top.jpg
Binary file not shown.
Binary file removed editor/shaders/window.ps
Binary file not shown.
56 changes: 0 additions & 56 deletions editor/shaders/window.vs

This file was deleted.

Binary file removed editor/shaders/window2d.ps
Binary file not shown.
40 changes: 0 additions & 40 deletions editor/shaders/window2d.vs

This file was deleted.

Loading