FAnimNode_Base::HasPreUpdate

Override this to indicate that [PreUpdate()](API\Runtime\Engine\Animation\FAnimNode_Base\PreUpdate) should be called on the game thread (usually to gather non-thread safe data) before [Update()](API\Runtime\Engine\Animation\FAnimNode_Base\Update) is called.

Choose your operating system:

Windows

macOS

Linux

Override Hierarchy

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Animation/AnimNodeBase.h

Include

#include "Animation/AnimNodeBase.h"

Syntax

virtual bool HasPreUpdate() const

Remarks

Override this to indicate that PreUpdate() should be called on the game thread (usually to gather non-thread safe data) before Update() is called.

that this is called at load on the UAnimInstance CDO to avoid needing to call this at runtime. This is called on the game thread.