egui support
- New Resource, EguiQueue: Utility to queue egui ui builders - New Rendering System, EguiRenderer: Utilizes a modified egui_glium library to render egui UI - Adjusted RenderingSystem trait and RenderingContext structure to provide event_loop and egui_queue. - Various minor adjusments
This commit is contained in:
parent
e88ce258ce
commit
ce24354f3b
18 changed files with 806 additions and 204 deletions
|
|
@ -6,7 +6,7 @@ edition = "2024"
|
|||
[dependencies]
|
||||
anyhow = "1.0.98"
|
||||
glam = "0.30.5"
|
||||
glium = { version = "0.35.0", features = ["glutin_backend", "simple_window_builder"] }
|
||||
glium = { version = "0.36.0", features = ["glutin_backend", "simple_window_builder"] }
|
||||
gltf = { version = "1.4.1", features = ["import", "utils", "KHR_texture_transform"] }
|
||||
raidillon_platform = { path = "../platform" }
|
||||
raidillon_core = { path = "../core" }
|
||||
|
|
@ -15,8 +15,7 @@ raidillon_ecs = { path = "../ecs" }
|
|||
raidillon_engine = { path = "../engine" }
|
||||
winit = "0.30.12"
|
||||
indexmap = "2.10.0"
|
||||
imgui = "0.12.0"
|
||||
imgui-winit-support = "0.13.0"
|
||||
imgui-glium-renderer = "0.13.0"
|
||||
exr = "1.73.0"
|
||||
image = { version = "0.25.8", default-features = false, features = ["exr"] }
|
||||
egui = "0.33.2"
|
||||
egui_glium = { version = "0.31.1", git = "https://github.com/reo6/egui_glium.git" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue