mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-07-04 20:26:05 +00:00
CBasicViewport: Make use of constexpr
This commit is contained in:
parent
ec66d7af9d
commit
69efdc0daf
@ -216,14 +216,14 @@ bool CBasicViewport::IsCursorVisible() const
|
||||
|
||||
bool CBasicViewport::IsMouseInputActive() const
|
||||
{
|
||||
static const FMouseInputs skMoveButtons = EMouseInput::MiddleButton | EMouseInput::RightButton;
|
||||
static constexpr FMouseInputs skMoveButtons = EMouseInput::MiddleButton | EMouseInput::RightButton;
|
||||
return ((mButtonsPressed & skMoveButtons) != 0);
|
||||
}
|
||||
|
||||
bool CBasicViewport::IsKeyboardInputActive() const
|
||||
{
|
||||
static const FKeyInputs skMoveKeys = EKeyInput::Q | EKeyInput::W | EKeyInput::E |
|
||||
EKeyInput::A | EKeyInput::S | EKeyInput::D;
|
||||
static constexpr FKeyInputs skMoveKeys = EKeyInput::Q | EKeyInput::W | EKeyInput::E |
|
||||
EKeyInput::A | EKeyInput::S | EKeyInput::D;
|
||||
return ((mKeysPressed & skMoveKeys) != 0);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user