As a Roblox developer, it is currently too hard to infer whether a loaded animation is Looped. Currently, you must preload the animation and wait an arbitrary time for the Looped property to be correct. This is an undocumented behaviour and quite unintuitive. More information here (thought it was a bug)
I have a menu with a list of emotes that players can click to play. If the emote is looped, I’d like to display a cancel/pause button. Currently, I add a “Looped” attribute manually to these emotes. But that’s not ideal as I’d like there to be a single source of truth, preferably when I publish the animation as Looped.
If this issue is addressed, it would improve my development experience because I wouldn’t have to use workarounds to read the Looped property correctly. There should not be a delay or at the very least there should be an API for me to know when the animation data is loaded. AnimationTrack:GetPropertyChangedSignal(“Looped”) does not work.