24 lines
700 B
Lua
24 lines
700 B
Lua
|
|
||
|
---@class XRestaurantBubbleIndexNode : XLuaBehaviorNode
|
||
|
---@field AgentProxy XRestaurantCharAgent
|
||
|
local XRestaurantBubbleIndexNode = XLuaBehaviorManager.RegisterNode(XLuaBehaviorNode,
|
||
|
"RestaurantBubbleIndex", CsBehaviorNodeType.Action, true, false)
|
||
|
|
||
|
function XRestaurantBubbleIndexNode:OnAwake()
|
||
|
if self.Fields == nil then
|
||
|
self.Node.Status = CsNodeStatus.ERROR
|
||
|
return
|
||
|
end
|
||
|
|
||
|
if self.Fields["Index"] == nil then
|
||
|
self.Node.Status = CsNodeStatus.ERROR
|
||
|
return
|
||
|
end
|
||
|
|
||
|
self.Index = self.Fields["Index"]
|
||
|
end
|
||
|
|
||
|
function XRestaurantBubbleIndexNode:OnEnter()
|
||
|
self.AgentProxy:DoBubbleIndex(self.Index)
|
||
|
self.Node.Status = CsNodeStatus.SUCCESS
|
||
|
end
|