wip: edit mode overlay

This commit is contained in:
galister
2025-11-12 01:38:04 +09:00
parent afc8804aba
commit 350c931749
14 changed files with 349 additions and 38 deletions

View File

@@ -99,6 +99,8 @@ pub struct OverlayWindowConfig {
pub global: bool,
/// True if transform, curvature, alpha has changed. Only used by OpenVR.
pub dirty: bool,
/// True if the window is showing the edit overlay
pub editing: bool,
pub saved_transform: Option<Affine3A>,
}
@@ -118,6 +120,7 @@ impl OverlayWindowConfig {
show_on_spawn: false,
global: false,
dirty: true,
editing: false,
}
}