PGRData/Script/matrix/xrestaurant/xnode/XRestaurantHideBubbleNode.lua

11 lines
386 B
Lua
Raw Normal View History

2024-09-01 20:49:41 +00:00
---@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