c204aa1abe
Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com>
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
/*
|
|
* 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
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AzCore/EBus/EBus.h>
|
|
#include <AzFramework/Entity/EntityContext.h>
|
|
|
|
namespace AzToolsFramework::Prefab
|
|
{
|
|
//! Used to notify when the editor focus changes.
|
|
class PrefabFocusNotifications
|
|
: public AZ::EBusTraits
|
|
{
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// EBusTraits overrides
|
|
static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Multiple;
|
|
static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById;
|
|
using BusIdType = AzFramework::EntityContextId;
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
//! Triggered when the editor focus is changed to a different prefab.
|
|
virtual void OnPrefabFocusChanged() = 0;
|
|
|
|
protected:
|
|
~PrefabFocusNotifications() = default;
|
|
};
|
|
|
|
using PrefabFocusNotificationBus = AZ::EBus<PrefabFocusNotifications>;
|
|
|
|
} // namespace AzToolsFramework::Prefab
|