-
-
Notifications
You must be signed in to change notification settings - Fork 8
[E] UI
The Editor UI system works like this
- The engine runtime is initiated
- The editor is started (Editor.cpp)
- Resources such as textures and thumbnails are loaded (Editor.cpp)
- A Dear ImGui context is created (Editor.cpp)
- A theme is loaded if the user has one (Editor.cpp)
- Tick starts
- The Dear ImGui context is updated (Editor.cpp)
- All the widgets are updated (Editor.cpp)
- Frame finishes
Only the most notable widgets will be listed
The asset slot accepts an asset discriminator to sort assets by type. Asset slots are used for the Details Panel
where they come particularly handy for easy asset assignment.
Contains the functionality for displaying the game preview to a Dear ImGui window, as well as the whole transformation gizmo system
Controls the Filesystem
widget and everything related to it. Notable for being a very complicated class that needs a refactor.
The memory editor is your standard hex/binary editor, that is going to be used for inspecting the Vulkan shader cache but is currently not able to do that
Lists all the GUI settings functions
Used for shipping your production ready application
Uses many types of charts to highlight statistics. Notable for both not being performant and being hard to refactor.
A soon-to-be released terminal emulator widget
Contains all warning messages
The UI works exactly the same as the Editor UI, setup and functionality wise. However, it needs to be kept in mind that the UI uses an event queue, while the regular Editor UI has its widgets baked in the code
This project is supported by all the people who joined our discord server and became beta testers. If you want to join the discord you can click here
- Home
- Beginner concepts
- Advanced concepts
- Engine developer and contributor resources