PGRData/Script/matrix/xguide/node/XGuideShowMaskNode.lua

26 lines
713 B
Lua

local XGuideShowMaskNode = XLuaBehaviorManager.RegisterNode(XLuaBehaviorNode, "GuideShowMask",CsBehaviorNodeType.Action,true,false)
--显示对话头像
function XGuideShowMaskNode:OnAwake()
if self.Fields == nil then
self.Node.Status = CsNodeStatus.ERROR
return
end
if self.Fields["IsShowMask"] == nil or self.Fields["IsBlockRayCast"] == nil then
self.Node.Status = CsNodeStatus.ERROR
return
end
self.IsShowMask = self.Fields["IsShowMask"]
self.IsBlockRayCast = self.Fields["IsBlockRayCast"]
end
function XGuideShowMaskNode:OnEnter()
self.AgentProxy:ShowMask(self.IsShowMask,self.IsBlockRayCast)
self.Node.Status = CsNodeStatus.SUCCESS
end