38261d0800
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines Signed-off-by: Steve Pham <spham@amazon.com>
39 lines
1.1 KiB
Lua
39 lines
1.1 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
|
|
--
|
|
--
|
|
--
|
|
----------------------------------------------------------------------------------------------------
|
|
|
|
local NextCanvasButton =
|
|
{
|
|
Properties =
|
|
{
|
|
canvasName = ""
|
|
},
|
|
}
|
|
|
|
function NextCanvasButton:OnActivate()
|
|
self.buttonHandler = UiButtonNotificationBus.Connect(self, self.entityId)
|
|
end
|
|
|
|
function NextCanvasButton:OnDeactivate()
|
|
self.buttonHandler:Disconnect()
|
|
end
|
|
|
|
function NextCanvasButton:OnButtonClick()
|
|
-- Load the next canvas
|
|
UiCanvasManagerBus.Broadcast.LoadCanvas(self.Properties.canvasName)
|
|
-- Unload the current canvas
|
|
canvasId = UiElementBus.Event.GetCanvas(self.entityId)
|
|
if (canvasId:IsValid()) then
|
|
UiCanvasManagerBus.Broadcast.UnloadCanvas(canvasId)
|
|
end
|
|
end
|
|
|
|
return NextCanvasButton
|