17 lines
580 B
Lua
17 lines
580 B
Lua
|
local XGuideStartNode = XLuaBehaviorManager.RegisterNode(XLuaBehaviorNode, "GuideStart",CsBehaviorNodeType.Action,true,false)
|
||
|
--引导开启节点
|
||
|
function XGuideStartNode:OnStart()
|
||
|
self.GuideId = self.BehaviorTree:GetLocalField("GuideId").Value
|
||
|
end
|
||
|
|
||
|
function XGuideStartNode:OnEnter()
|
||
|
self.AgentProxy:ShowMask(false,true)
|
||
|
XDataCenter.GuideManager.ReqGuideOpen(self.GuideId,function()
|
||
|
self.Node.Status = CsNodeStatus.SUCCESS
|
||
|
CS.XGuideEventPass.IsFightGuide = false
|
||
|
|
||
|
CsXGameEventManager.Instance:Notify(XEventId.EVENT_GUIDE_START)
|
||
|
end)
|
||
|
end
|
||
|
|