diff --git a/Docs/screenshot.png b/Docs/screenshot.png new file mode 100644 index 0000000..48df0e9 Binary files /dev/null and b/Docs/screenshot.png differ diff --git a/KP3Dii/ext/src/imgui/TextEditor.cpp b/KP3Dii/ext/src/imgui/TextEditor.cpp index f131349..ecea3ba 100644 --- a/KP3Dii/ext/src/imgui/TextEditor.cpp +++ b/KP3Dii/ext/src/imgui/TextEditor.cpp @@ -49,7 +49,7 @@ TextEditor::TextEditor() , mShowWhitespaces(true) , mStartTime(std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count()) { - SetPalette(GetDarkPalette()); + SetPalette(GetRetroBluePalette()); SetLanguageDefinition(LanguageDefinition::HLSL()); mLines.push_back(Line()); } diff --git a/README.md b/README.md index d69a793..5e2be24 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -![KP3Dii banner](Data/resources/textures/.kp3d/banner.png) +![KP3Dii banner](Docs/screenshot.png) # KP3Dii This is the sequel to my [KP3D](https://github.com/kpworld-xyz/kp3d) Doom-inspired game engine. It's a unique game engine written in C++17 that combines Doom's sector-based approach to mapmaking and rendering with modern techniques like constructive solid geometry. -Unlike its predecessor, the KP3Dii map editor and "game" are considered one. Previously you would have to download a separate map editor and build maps using a 2D interface. With KP3Dii, you may now edit maps in 3D. I was inspired to do this by [Cube 2: Sauerbraten](http://sauerbraten.org/), another handmade game/engine that features a unique level system. It also has co-op map editing, which is a goal for this engine as well. +Unlike its predecessor, the KP3Dii map editor and "game" are considered one. Previously you would have to download a separate map editor and build maps using a 2D interface. With KP3Dii, you may now edit maps in 3D. I was inspired to do this by [Cube 2: Sauerbraten](http://sauerbraten.org/), another handmade game/engine that features a unique level system; it also has co-op map editing, which is a goal for this engine as well! ## Improvements over KP3Dii - 3D map editor (as mentioned above)