File tree 1 file changed +8
-8
lines changed
Brio/UI/Windows/Specialized
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -494,14 +494,14 @@ public void Dispose()
494
494
495
495
private class OverlayUIState ( PosingConfiguration configuration )
496
496
{
497
- public bool PopupOpen => ImGui . IsPopupOpen ( _boneSelectPopupName ) ;
498
- public bool UsingGizmo => ImGuizmo . IsUsing ( ) ;
499
- public bool HoveringGizmo => ImGuizmo . IsOver ( ) ;
500
- public bool AnyActive => ImGui . IsAnyItemActive ( ) ;
501
- public bool AnyWindowHovered => ImGui . IsWindowHovered ( ImGuiHoveredFlags . AnyWindow ) ;
502
- public bool UserDisablingSkeleton => InputService . IsKeyBindDown ( KeyBindEvents . Posing_DisableSkeleton ) ;
503
- public bool UserDisablingGizmo => InputService . IsKeyBindDown ( KeyBindEvents . Posing_DisableGizmo ) ;
504
- public bool UserHidingOverlay => InputService . IsKeyBindDown ( KeyBindEvents . Posing_HideOverlay ) ;
497
+ public bool PopupOpen = ImGui . IsPopupOpen ( _boneSelectPopupName ) ;
498
+ public bool UsingGizmo = ImGuizmo . IsUsing ( ) ;
499
+ public bool HoveringGizmo = ImGuizmo . IsOver ( ) ;
500
+ public bool AnyActive = ImGui . IsAnyItemActive ( ) ;
501
+ public bool AnyWindowHovered = ImGui . IsWindowHovered ( ImGuiHoveredFlags . AnyWindow ) ;
502
+ public bool UserDisablingSkeleton = InputService . IsKeyBindDown ( KeyBindEvents . Posing_DisableSkeleton ) ;
503
+ public bool UserDisablingGizmo = InputService . IsKeyBindDown ( KeyBindEvents . Posing_DisableGizmo ) ;
504
+ public bool UserHidingOverlay = InputService . IsKeyBindDown ( KeyBindEvents . Posing_HideOverlay ) ;
505
505
506
506
507
507
public bool AnythingBusy => PopupOpen || UsingGizmo || AnyActive || AnyWindowHovered ;
You can’t perform that action at this time.
0 commit comments