GetAnimationBoolValue
7/14/25Less than 1 minute
MLPlayer.GetAnimationBoolValue(string name)
Gets a boolean 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 |
|---|---|
| boolean | Bool Value |
Usage
---@type MLPlayer
local mlplayer;
---@type string
local name;
local val0 = mlplayer.GetAnimationBoolValue(name)
