Animations Uploaded to ROBLOX have always Action priority even when set otherwise

So i created animations in ROBLOX and i uploaded them to roblox after is set their priorities to Movement.
Capture

Then i imported the animations into roblox to call them from animator:LoadAnimation. But it prints all Action

Capture2

for i,v in pairs(locomotion) do
	v.anim:Play(0,0.01,1)
	print(v.anim.Priority)
end

Expected behavior

I expect the animations’ default priority to be the same as i set them before importing them to ROBLOX

Maybe try to overwrite the animation again after you’ve set the Priority.

Does the animation priority get updated after you put the priority as Action4 for example?

If these don’t work try to make a new animation asset and see if it works then

I tried but it doesnt work, its always Action

maybe it’s a script problem? Your script gets a list called locomotion. Can you share more about that list?

Hi there, thanks for your report!

This is not exactly a bug. What happens is that you print the priority of the track even before the clip has been successfully loaded into the animator (the animator has to wait for the asset server to deliver the data of the animation).

If you add a task.wait(1) before printing the priority, you should see the expected value. Unfortunately there is no callback or event to notify you when the animation has been loaded.

Hope this helps!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.