Choose your operating system:
Windows
macOS
Linux
| FTickableObjectBase::IsAllowedToTick()
|
Module |
|
Header |
/Engine/Source/Runtime/Engine/Public/Subsystems/WorldSubsystem.h |
Include |
#include "Subsystems/WorldSubsystem.h" |
Source |
/Engine/Source/Runtime/Engine/Private/Subsystems/WorldSubsystem.cpp |
virtual bool IsAllowedToTick() const
Virtual that can be overloaded by the inheriting class. It is used to determine whether an object is allowed to tick. This is different than IsTickable for keeping existing tickable objects working while providing an extra-safety for classes that decide to implement it (e.g. tickable world subsystems that have been deinitialized are not allowed to tick, regardless of what IsTickable says)
true if object is allowed to be ticked, false otherwise.