Files
o3de/Assets/Engine/Scripts/Entities/AI/SmartObject.lua
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

63 lines
1.5 KiB
Lua

----------------------------------------------------------------------------------------------------
--
-- Copyright (c) Contributors to the Open 3D Engine Project.
-- For complete copyright and license terms please see the LICENSE at the root of this distribution.
--
-- SPDX-License-Identifier: Apache-2.0 OR MIT
--
--
--
--
----------------------------------------------------------------------------------------------------
SmartObject = {
type = "SmartObject",
Properties =
{
soclasses_SmartObjectClass = "",
},
Editor={
Model="Editor/Objects/anchor.cgf",
Icon="smartobject.bmp",
IconOnTop=1,
},
}
-------------------------------------------------------
function SmartObject:OnInit()
end
-------------------------------------------------------
function SmartObject:OnReset()
end
-------------------------------------------------------
function SmartObject:OnUsed()
-- this function will be called from ACT_USEOBJECT
BroadcastEvent(self, "Used");
end
-------------------------------------------------------
function SmartObject:OnNavigationStarted(userId)
self:ActivateOutput("NavigationStarted", userId or NULL_ENTITY)
end
-------------------------------------------------------
function SmartObject:Event_Used( sender )
BroadcastEvent(self, "Used");
end
SmartObject.FlowEvents =
{
Inputs =
{
Used = { SmartObject.Event_Used, "bool" },
},
Outputs =
{
Used = "bool",
NavigationStarted = "entity",
},
}