feat(editor): add voltex_editor crate with IMGUI core (font, draw_list, widgets)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 15:10:53 +09:00
parent 87b9b7c1bd
commit 19db4dd390
8 changed files with 671 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ members = [
"crates/voltex_ai",
"crates/voltex_net",
"crates/voltex_script",
"crates/voltex_editor",
]
[workspace.dependencies]
@@ -35,6 +36,7 @@ voltex_audio = { path = "crates/voltex_audio" }
voltex_ai = { path = "crates/voltex_ai" }
voltex_net = { path = "crates/voltex_net" }
voltex_script = { path = "crates/voltex_script" }
voltex_editor = { path = "crates/voltex_editor" }
wgpu = "28.0"
winit = "0.30"
bytemuck = { version = "1", features = ["derive"] }