FTickableObjectBase::IsAllowedToTick

Virtual that can be overloaded by the inheriting class.

Windows
MacOS
Linux

Override Hierarchy

FTickableObjectBase::IsAllowedToTick()

UTickableWorldSubsystem::IsAllowedToTick()

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Public/Tickable.h

Include

#include "Tickable.h"

Syntax

virtual bool IsAllowedToTick() const

Remarks

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)

Returns

true if object is allowed to be ticked, false otherwise.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss