GetAnimationIntValue
7/14/25Less than 1 minute
MLPlayer.GetAnimationIntValue(string name)
Gets an integer animation value from player's animator, if the parameter exists. This function can get player's Locomotion, Hand and Emote parameters.
Parameters:
| Name | Type | Description |
|---|---|---|
| name | string | Parameter name |
Returns:
| type | Description |
|---|---|
| number | Integer Value |
Usage
---@type MLPlayer
local mlplayer;
---@type string
local name;
local val0 = mlplayer.GetAnimationIntValue(name)
