GetAnimation#

ExportTransform.GetAnimation()#

組み込まれたアニメーションに対応する ExportAnimation を取得を試みます。

Returns:

アニメーションに対応するオブジェクト

Return type:

ExportAnimation

Example#

local t = vci.assets.GetTransform("Animation1")
local animation = t.GetAnimation()
if animation ~= nil then
    animation.Play(true) -- "Animation1" に組み込まれたアニメーションを再生
else
    print("Animation1 に Animation が組み込まれていません")
end