#include <UiEditorOnlyEntityHandler.h>
Inherits AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler.
Public Member Functions | |
| AZ_CLASS_ALLOCATOR (UiEditorOnlyEntityHandler, AZ::SystemAllocator) | |
| AZ_RTTI (AzToolsFramework::Prefab::PrefabConversionUtils::UiEditorOnlyEntityHandler, "{949CF813-4A8E-4D55-B323-0ED2A967CDCC}", EditorOnlyEntityHandler) | |
| bool | IsEntityUniquelyForThisHandler (AZ::Entity *entity) const override |
| void | AddEditorOnlyEntity (AZ::Entity *editorOnlyEntity, EntityIdSet &editorOnlyEntities) override |
| Result | HandleEditorOnlyEntities (const AzToolsFramework::EntityList &entities, const AzToolsFramework::EntityIdSet &editorOnlyEntityIds, AZ::SerializeContext &serializeContext) override |
Public Member Functions inherited from AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler | |
| AZ_CLASS_ALLOCATOR (EditorOnlyEntityHandler, AZ::SystemAllocator) | |
| AZ_RTTI (AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler, "{C420F65D-18AE-4CAF-BB18-70FA4FE73243}") | |
Additional Inherited Members | |
Public Types inherited from AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler | |
| using | Result = AZ::Outcome< void, AZStd::string > |
Static Public Member Functions inherited from AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler | |
| static Result | ValidateReferences (const EntityList &entities, const EntityIdSet &editorOnlyEntityIds, AZ::SerializeContext &serializeContext) |
EditorOnlyEntity handler for UI entities.
|
overridevirtual |
Adds the given entity ID to the set of editor only entities.
Handlers can customize this behavior, such as additionally adding child entities when a parent is marked as editor-only.
Reimplemented from AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler.
|
overridevirtual |
This handler is responsible for making any necessary modifications to other entities in the Prefab prior to the removal of all editor-only entities. After this callback returns, editor-only entities will be removed from the Prefab. See WorldEditorOnlyEntityHandler below for an example of processing and validation that occurs for standard world entities.
| entities | a list of all entities in the Prefab, including those marked as editor-only. |
| editorOnlyEntityIds | a precomputed set containing Ids for all entities within the 'entities' list that were marked as editor-only. |
| serializeContext | useful to inspect entity data for validation purposes. |
Reimplemented from AzToolsFramework::Prefab::PrefabConversionUtils::EditorOnlyEntityHandler.
|
overridevirtual |