22 lines
660 B
Lua
22 lines
660 B
Lua
|
local XMovieActionAnimationPlay = XClass(XMovieActionBase, "XMovieActionAnimationPlay")
|
||
|
|
||
|
function XMovieActionAnimationPlay:Ctor(actionData)
|
||
|
local params = actionData.Params
|
||
|
self.AnimName = params[1]
|
||
|
end
|
||
|
|
||
|
function XMovieActionAnimationPlay:OnRunning()
|
||
|
local animName = self.AnimName
|
||
|
local anim = self.UiRoot[animName]
|
||
|
if not anim then
|
||
|
XLog.Error("XMovieActionAnimationPlay:OnRunning error: Animation not Exist, animName is: " .. animName)
|
||
|
return
|
||
|
end
|
||
|
|
||
|
anim.gameObject:SetActiveEx(true)
|
||
|
anim:PlayTimelineAnimation(function()
|
||
|
anim.gameObject:SetActiveEx(false)
|
||
|
end)
|
||
|
end
|
||
|
|
||
|
return XMovieActionAnimationPlay
|