2024-12-29 20:02:43 +00:00
|
|
|
---Load an animation clipset. When called from a thread, it will yield until it has loaded.
|
|
|
|
---@param animSet string
|
2024-12-30 10:15:34 +00:00
|
|
|
---@param timeout number? Approximate milliseconds to wait for the clipset to load. Default is 10000.
|
|
|
|
---@return string animSet
|
2024-12-29 20:02:43 +00:00
|
|
|
function lib.requestAnimSet(animSet, timeout)
|
|
|
|
if HasAnimSetLoaded(animSet) then return animSet end
|
|
|
|
|
|
|
|
if type(animSet) ~= 'string' then
|
|
|
|
error(("expected animSet to have type 'string' (received %s)"):format(type(animSet)))
|
|
|
|
end
|
|
|
|
|
2024-12-30 10:15:34 +00:00
|
|
|
return lib.streamingRequest(RequestAnimSet, HasAnimSetLoaded, 'animSet', animSet, timeout)
|
2024-12-29 20:02:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return lib.requestAnimSet
|