forked from endernon/PGRData
11 lines
No EOL
386 B
Lua
11 lines
No EOL
386 B
Lua
|
|
---@class XRestaurantHideBubbleNode : XLuaBehaviorNode
|
|
---@field AgentProxy XRestaurantCharAgent
|
|
local XRestaurantHideBubbleNode = XLuaBehaviorManager.RegisterNode(XLuaBehaviorNode,
|
|
"RestaurantHideBubble", CsBehaviorNodeType.Action, true, false)
|
|
|
|
|
|
function XRestaurantHideBubbleNode:OnEnter()
|
|
self.AgentProxy:DoHideBubble()
|
|
self.Node.Status = CsNodeStatus.SUCCESS
|
|
end |