Unreal Integration 2.02

6. API Reference | UFMODAnimNotifyPlay

Used for triggering Events in Animation timelines.

This class inherits from UAnimNotify

Properties:

Methods:

UFMODAnimNotifyPlay::AttachName

Socket or bone name to attach sound to.

C++

FString AttachName;

UFMODAnimNotifyPlay::bFollow

Should this sound follow its owner.

C++

unit32 bFollow : 1;

UFMODAnimNotifyPlay::Event

FMODEvent reference to play.

C++

TAssetPtr<class UFMODEvent> Event;

See Also: UFMODEvent

UFMODAnimNotifyPlay::Notify

Event triggered when the timeline crosses the notify marker.

C++

virtual void Notify(USkeletalMeshComponent *MeshComp, UAnimSequenceBase *AnimSeq) override
MeshComp
USceneComponent used for the position of the Event.
AnimSeq
Reference to the current animation.

If UFMODAnimNotifyPlay::bFollow is true Play Event Attached is called using the current UFMODAnimNotifyPlay::AttachName.
Otherwise Play Event At Location is called using the MeshComp for the positional information.