UARBaseAsyncTaskBlueprintProxy::IsTickable

Virtual that can be overloaded by the inheriting class.

Choose your operating system:

Windows

macOS

Linux

Override Hierarchy

FTickableObjectBase::IsTickable()

UARBaseAsyncTaskBlueprintProxy::IsTickable()

References

Module

AugmentedReality

Header

/Engine/Source/Runtime/AugmentedReality/Public/ARBlueprintProxy.h

Include

#include "ARBlueprintProxy.h"

Syntax

virtual bool IsTickable() const

Remarks

Virtual that can be overloaded by the inheriting class. It is used to determine whether an object is ready to be ticked. This is required for example for all UObject derived classes as they might be loaded async and therefore won't be ready immediately.

Returns

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