AnimationClipProvider
Provides functions to load and preview AnimationClips. It includes a number of functions that are useful when working with an Animation.
The AnimationClipProvider replaces the deprecated KeyframeSequenceProvider that was used to download KeyframeSequences by content ID.
The AnimationClipProvider has a number of uses.
- Download the AnimationClip associated with an animation content ID from the Roblox website, regardless of the underlying type of AnimationClip (KeyframeSequence or CurveAnimation).
- Generate a temporary id to locally preview an animation.
- Fetch the content IDs of animations owned by a particular user.
Summary
Properties
Methods
Generates a temporary asset ID from a AnimationClip that can be used for localized testing of an animation. Generates an active:// URL.
Generates a temporary asset ID from a AnimationClip that can be used for localized testing of an animation. Generates a hash.
Returns a AnimationClip based on the specified assetId asynchronously.
This function returns an InventoryPages object which can be used to iterate over animations owned by a specific user.
Events
Properties
Methods
GetMemStats
Returns a Lua table with memory usage for all animations stored in the cache. The memory reported is a summation of all of the memory used in any of the animation caches stored by the AnimationClipProvider.
Returns
A Lua table with key storing the animation names and value returning the amount of memory used by that animation.
RegisterActiveAnimationClip
Generates a temporary asset ID from a AnimationClip that can be used for localized testing of an animation.
This function performs the same function to RegisterAnimationClip yet generates an active:// URL instead of a hash.
The ID generated can be used in an AnimationClip's AnimationId property for testing.
The asset ID generated by this function is temporary and cannot be used outside of Studio. Developers wishing to generate an asset ID that can be used online should upload the AnimationClip to Roblox.
Returns
A temporary asset ID generated for localized animation playback.
RegisterAnimationClip
Generates a temporary asset ID from a AnimationClip that can be used for localized testing of an animation.
This function performs the same function to RegisterActiveAnimationClip yet generates an active:// URL instead of a hash.
The ID generated can be used for the Animation.AnimationId property to test animations.
The asset ID generated by this function is temporary and cannot be used outside of Studio. Developers wishing to generate an asset ID that can be used online should upload the AnimationClip to Roblox.
Returns
A temporary asset ID generated for localized animation playback.
GetAnimationClipAsync
Fetches an AnimationClip based on the specified assetId. The assetId must correspond to an animation asset in Roblox. The function will yield until the AnimationClip is loaded from the website and should be wrapped in a pcall.
Returns
The AnimationClip found.
GetAnimations
This function returns an InventoryPages object which can be used to iterate over animations owned by a specific user.
This function has a number of potential uses, such as allowing users to browse and import animations into a custom animation plugin.
Returns
An InventoryPages of animations.