natives.requestAnims

Revision as of 00:05, 4 December 2025 by ChrisGame20 (talk | contribs) (Created page with "{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.requestAnims |parameters = string animDict |parameter1 = string animDict The animation dictionary name to load (e.g. "cop") |usage = Requests the specified animation dictionary to be loaded into memory. |notes = - After requesting, use natives.haveAnimsLoaded to check if the dictionary is ready - Required before calling natives.taskPlayAnimWithFlags with animations from that dictionary |...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Function Client Only icon-iv.png Online and Offline

Available since Client 1.0.0

void natives.requestAnims(string animDict)

The natives.requestAnims function is used to Requests the specified animation dictionary to be loaded into memory.

Parameters

1) string animDict The animation dictionary name to load (e.g. "cop").

Return

void This function doesn't return a value.

Notes

Examples

Example 1 - JavaScript:

natives.requestAnims("cop");

Compatibility

There isn't any compatibility information for this function.