I am trying to control a sequence device vai Verse. I want it to go to a specific frame according to the value of MyVariable.
It works but only if I “play” and “stop” first, like so:
OnCharacterSpawned(SpawnedAgent:agent):void=
MySequence.Play()
MySequence.Stop()
MySequence.SetPlaybackFrame(MyVariable)
Why it just can’t SetPlaybackFrame directly?