_ALL_Play#

ExportAnimation._ALL_Play(isLoop)#

ExportAnimation.Play()ALL関数です。
アニメーションを再生します。
複数のAnimationClipが含まれている場合は最初のAnimationClipを再生します。

Parameters:

isLoop (boolean) -- ループ再生するかどうか

Sample#

if vci.assets.IsMine then
    -- AnimationをアタッチしたオブジェクトのExportAnimationを取得
    local transform = vci.assets.GetTransform("AnimationObject")
    local animation = transform.GetAnimation()

    -- Anim1を再生
    animation._ALL_Play(true)
end