-
-
Notifications
You must be signed in to change notification settings - Fork 18
Can Interactor Interact
Dominik Pavlíček edited this page Nov 9, 2022
·
1 revision
switch (InteractorState)
{
case EInteractorStateV2::EIS_Active:
case EInteractorStateV2::EIS_Awake:
return true;
case EInteractorStateV2::EIS_Asleep:
case EInteractorStateV2::EIS_Suppressed:
case EInteractorStateV2::EIS_Disabled:
case EInteractorStateV2::Default:
default:
return false;
}
return false;