PGRData/Script/matrix/xhome/xdorm/xhomefurniture/xhomefurniturenode/XHomeFurnitureDoActionOnlyNode.lua

22 lines
761 B
Lua

local XHomeFurnitureDoActionOnlyNode = XLuaBehaviorManager.RegisterNode(XLuaBehaviorNode, "HomeFurnitureDoActionOnly",CsBehaviorNodeType.Action,true,false)
function XHomeFurnitureDoActionOnlyNode:OnAwake()
if self.Fields == nil then
self.Node.Status = CsNodeStatus.ERROR
return
end
if self.Fields["ActionId"] == nil then
self.Node.Status = CsNodeStatus.ERROR
return
end
self.ActionId = self.Fields["ActionId"]
self.CrossDuration = self.Fields["CrossDuration"]
self.NeedFadeCross = self.Fields["NeedFadeCross"]
end
function XHomeFurnitureDoActionOnlyNode:OnEnter()
self.AgentProxy:DoActionNode(self.ActionId,self.NeedFadeCross,self.CrossDuration)
self.Node.Status = CsNodeStatus.SUCCESS
end