diff --git a/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt
index 2a5e1d7cab..d6740152a7 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt
+++ b/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt
@@ -13,7 +13,8 @@
if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
# Only enable AWS automated tests on Windows
- if(NOT "${PAL_PLATFORM_NAME}" STREQUAL "Windows")
+ set(SUPPORTED_PLATFORMS "Windows" "Linux")
+ if (NOT "${PAL_PLATFORM_NAME}" IN_LIST SUPPORTED_PLATFORMS)
return()
endif()
@@ -23,7 +24,6 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
TEST_SERIAL
PATH ${CMAKE_CURRENT_LIST_DIR}/${PAL_PLATFORM_NAME}/
RUNTIME_DEPENDENCIES
- Legacy::Editor
AZ::AssetProcessor
AutomatedTesting.GameLauncher
AutomatedTesting.Assets
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/README.md b/AutomatedTesting/Gem/PythonTests/AWS/README.md
index 0d046cbe4c..a25f39d9c2 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/README.md
+++ b/AutomatedTesting/Gem/PythonTests/AWS/README.md
@@ -2,30 +2,61 @@
## Prerequisites
1. Build the O3DE Editor and AutomatedTesting.GameLauncher in Profile.
-2. AWS CLI is installed and configured following [Configuration and Credential File Settings](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html).
-3. [AWS Cloud Development Kit (CDK)](https://docs.aws.amazon.com/cdk/latest/guide/getting_started.html#getting_started_install) is installed.
+2. Install the latest version of NodeJs.
+3. AWS CLI is installed and configured following [Configuration and Credential File Settings](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html).
+4. [AWS Cloud Development Kit (CDK)](https://docs.aws.amazon.com/cdk/latest/guide/getting_started.html#getting_started_install) is installed.
## Deploy CDK Applications
1. Go to the AWS IAM console and create an IAM role called o3de-automation-tests which adds your own account as as a trusted entity and uses the "AdministratorAccess" permissions policy.
-2. Copy {engine_root}\scripts\build\Platform\Windows\deploy_cdk_applications.cmd to your engine root folder.
-3. Open a new Command Prompt window at the engine root and set the following environment variables:
-```
- Set O3DE_AWS_PROJECT_NAME=AWSAUTO
- Set O3DE_AWS_DEPLOY_REGION=us-east-1
- Set O3DE_AWS_DEPLOY_ACCOUNT={your_aws_account_id}
- Set ASSUME_ROLE_ARN=arn:aws:iam::{your_aws_account_id}:role/o3de-automation-tests
- Set COMMIT_ID=HEAD
-```
-4. In the same Command Prompt window, Deploy the CDK applications for AWS gems by running deploy_cdk_applications.cmd.
+2. Copy the following deployment script to your engine root folder:
+ * Windows (Command Prompt)
+ ```
+ {engine_root}\scripts\build\Platform\Windows\deploy_cdk_applications.cmd
+ ```
+ * Linux
+ ```
+ {engine_root}/scripts/build/Platform/Linux/deploy_cdk_applications.sh
+ ```
+3. Open a new CLI window at the engine root and set the following environment variables:
+ * Windows
+ ```
+ Set O3DE_AWS_PROJECT_NAME=AWSAUTO
+ Set O3DE_AWS_DEPLOY_REGION=us-east-1
+ Set ASSUME_ROLE_ARN=arn:aws:iam::{your_aws_account_id}:role/o3de-automation-tests
+ Set COMMIT_ID=HEAD
+ ```
+ * Linux
+ ```
+ export O3DE_AWS_PROJECT_NAME=AWSAUTO
+ export O3DE_AWS_DEPLOY_REGION=us-east-1
+ export ASSUME_ROLE_ARN=arn:aws:iam::{your_aws_account_id}:role/o3de-automation-tests
+ export COMMIT_ID=HEAD
+ ```
+4. In the same CLI window, Deploy the CDK applications for AWS gems by running deploy_cdk_applications.cmd.
## Run Automation Tests
### CLI
-In the same Command Prompt window, run the following CLI command:
-python\python.cmd -m pytest {path_to_the_test_file} --build-directory {directory_to_the_profile_build}
+1. In the same CLI window, run the following CLI command:
+ * Windows
+ ```
+ python\python.cmd -m pytest {path_to_the_test_file} --build-directory {directory_to_the_profile_build}
+ ```
+ * Linux
+ ```
+ python/python.sh -m pytest {path_to_the_test_file} --build-directory {directory_to_the_profile_build}
+ ```
### Pycharm
You can also run any specific automation test directly from Pycharm by providing the "--build-directory" argument in the Run Configuration.
## Destroy CDK Applications
-1. Copy {engine_root}\scripts\build\Platform\Windows\destroy_cdk_applications.cmd to your engine root folder.
-2. In the same Command Prompt window, destroy the CDK applications for AWS gems by running destroy_cdk_applications.cmd.
\ No newline at end of file
+1. Copy the following destruction script to your engine root folder:
+ * Windows
+ ```
+ {engine_root}\scripts\build\Platform\Windows\destroy_cdk_applications.cmd
+ ```
+ * Linux
+ ```
+ {engine_root}/scripts/build/Platform/Linux/destroy_cdk_applications.sh
+ ```
+2. In the same CLI window, destroy the CDK applications for AWS gems by running destroy_cdk_applications.cmd.
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py
deleted file mode 100644
index 50cbb262dd..0000000000
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-"""
-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
-"""
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/core/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/__init__.py
similarity index 100%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/core/__init__.py
rename to AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/__init__.py
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_automation_test.py
similarity index 96%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py
rename to AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_automation_test.py
index 6f3113d771..77d71df370 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_automation_test.py
@@ -1,289 +1,289 @@
-"""
-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
-"""
-
-import logging
-import os
-import pytest
-import typing
-from datetime import datetime
-
-import ly_test_tools.log.log_monitor
-
-from AWS.common import constants
-from AWS.common.resource_mappings import AWS_RESOURCE_MAPPINGS_ACCOUNT_ID_KEY
-from .aws_metrics_custom_thread import AWSMetricsThread
-
-# fixture imports
-from assetpipeline.ap_fixtures.asset_processor_fixture import asset_processor
-from .aws_metrics_utils import aws_metrics_utils
-
-AWS_METRICS_FEATURE_NAME = 'AWSMetrics'
-
-logger = logging.getLogger(__name__)
-
-
-def setup(launcher: pytest.fixture,
- asset_processor: pytest.fixture) -> pytest.fixture:
- """
- Set up the resource mapping configuration and start the log monitor.
- :param launcher: Client launcher for running the test level.
- :param asset_processor: asset_processor fixture.
- :return log monitor object.
- """
- asset_processor.start()
- asset_processor.wait_for_idle()
-
- file_to_monitor = os.path.join(launcher.workspace.paths.project_log(), constants.GAME_LOG_NAME)
-
- # Initialize the log monitor.
- log_monitor = ly_test_tools.log.log_monitor.LogMonitor(launcher=launcher, log_file_path=file_to_monitor)
-
- return log_monitor
-
-
-def monitor_metrics_submission(log_monitor: pytest.fixture) -> None:
- """
- Monitor the messages and notifications for submitting metrics.
- :param log_monitor: Log monitor to check the log messages.
- """
- expected_lines = [
- '(Script) - Submitted metrics without buffer.',
- '(Script) - Submitted metrics with buffer.',
- '(Script) - Flushed the buffered metrics.',
- '(Script) - Metrics is sent successfully.'
- ]
-
- unexpected_lines = [
- '(Script) - Failed to submit metrics without buffer.',
- '(Script) - Failed to submit metrics with buffer.',
- '(Script) - Failed to send metrics.'
- ]
-
- result = log_monitor.monitor_log_for_lines(
- expected_lines=expected_lines,
- unexpected_lines=unexpected_lines,
- halt_on_unexpected=True)
-
- # Assert the log monitor detected expected lines and did not detect any unexpected lines.
- assert result, (
- f'Log monitoring failed. Used expected_lines values: {expected_lines} & '
- f'unexpected_lines values: {unexpected_lines}')
-
-
-def query_metrics_from_s3(aws_metrics_utils: pytest.fixture, resource_mappings: pytest.fixture) -> None:
- """
- Verify that the metrics events are delivered to the S3 bucket and can be queried.
- :param aws_metrics_utils: aws_metrics_utils fixture.
- :param resource_mappings: resource_mappings fixture.
- """
- aws_metrics_utils.verify_s3_delivery(
- resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsBucketName')
- )
- logger.info('Metrics are sent to S3.')
-
- aws_metrics_utils.run_glue_crawler(
- resource_mappings.get_resource_name_id('AWSMetrics.EventsCrawlerName'))
-
- # Remove the events_json table if exists so that the sample query can create a table with the same name.
- aws_metrics_utils.delete_table(resource_mappings.get_resource_name_id('AWSMetrics.EventDatabaseName'), 'events_json')
- aws_metrics_utils.run_named_queries(resource_mappings.get_resource_name_id('AWSMetrics.AthenaWorkGroupName'))
- logger.info('Query metrics from S3 successfully.')
-
-
-def verify_operational_metrics(aws_metrics_utils: pytest.fixture,
- resource_mappings: pytest.fixture, start_time: datetime) -> None:
- """
- Verify that operational health metrics are delivered to CloudWatch.
- :param aws_metrics_utils: aws_metrics_utils fixture.
- :param resource_mappings: resource_mappings fixture.
- :param start_time: Time when the game launcher starts.
- """
- aws_metrics_utils.verify_cloud_watch_delivery(
- 'AWS/Lambda',
- 'Invocations',
- [{'Name': 'FunctionName',
- 'Value': resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsProcessingLambdaName')}],
- start_time)
- logger.info('AnalyticsProcessingLambda metrics are sent to CloudWatch.')
-
- aws_metrics_utils.verify_cloud_watch_delivery(
- 'AWS/Lambda',
- 'Invocations',
- [{'Name': 'FunctionName',
- 'Value': resource_mappings.get_resource_name_id('AWSMetrics.EventProcessingLambdaName')}],
- start_time)
- logger.info('EventsProcessingLambda metrics are sent to CloudWatch.')
-
-
-def update_kinesis_analytics_application_status(aws_metrics_utils: pytest.fixture,
- resource_mappings: pytest.fixture, start_application: bool) -> None:
- """
- Update the Kinesis analytics application to start or stop it.
- :param aws_metrics_utils: aws_metrics_utils fixture.
- :param resource_mappings: resource_mappings fixture.
- :param start_application: whether to start or stop the application.
- """
- if start_application:
- aws_metrics_utils.start_kinesis_data_analytics_application(
- resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsApplicationName'))
- else:
- aws_metrics_utils.stop_kinesis_data_analytics_application(
- resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsApplicationName'))
-
-@pytest.mark.SUITE_awsi
-@pytest.mark.usefixtures('automatic_process_killer')
-@pytest.mark.usefixtures('aws_credentials')
-@pytest.mark.usefixtures('resource_mappings')
-@pytest.mark.parametrize('assume_role_arn', [constants.ASSUME_ROLE_ARN])
-@pytest.mark.parametrize('feature_name', [AWS_METRICS_FEATURE_NAME])
-@pytest.mark.parametrize('profile_name', ['AWSAutomationTest'])
-@pytest.mark.parametrize('project', ['AutomatedTesting'])
-@pytest.mark.parametrize('region_name', [constants.AWS_REGION])
-@pytest.mark.parametrize('resource_mappings_filename', [constants.AWS_RESOURCE_MAPPING_FILE_NAME])
-@pytest.mark.parametrize('session_name', [constants.SESSION_NAME])
-@pytest.mark.parametrize('stacks', [[f'{constants.AWS_PROJECT_NAME}-{AWS_METRICS_FEATURE_NAME}-{constants.AWS_REGION}']])
-class TestAWSMetricsWindows(object):
- """
- Test class to verify the real-time and batch analytics for metrics.
- """
- @pytest.mark.parametrize('level', ['AWS/Metrics'])
- def test_realtime_and_batch_analytics(self,
- level: str,
- launcher: pytest.fixture,
- asset_processor: pytest.fixture,
- workspace: pytest.fixture,
- aws_utils: pytest.fixture,
- resource_mappings: pytest.fixture,
- aws_metrics_utils: pytest.fixture):
- """
- Verify that the metrics events are sent to CloudWatch and S3 for analytics.
- """
- # Start Kinesis analytics application on a separate thread to avoid blocking the test.
- kinesis_analytics_application_thread = AWSMetricsThread(target=update_kinesis_analytics_application_status,
- args=(aws_metrics_utils, resource_mappings, True))
- kinesis_analytics_application_thread.start()
-
- log_monitor = setup(launcher, asset_processor)
-
- # Kinesis analytics application needs to be in the running state before we start the game launcher.
- kinesis_analytics_application_thread.join()
- launcher.args = ['+LoadLevel', level]
- launcher.args.extend(['-rhi=null'])
- start_time = datetime.utcnow()
- with launcher.start(launch_ap=False):
- monitor_metrics_submission(log_monitor)
-
- # Verify that real-time analytics metrics are delivered to CloudWatch.
- aws_metrics_utils.verify_cloud_watch_delivery(
- AWS_METRICS_FEATURE_NAME,
- 'TotalLogins',
- [],
- start_time)
- logger.info('Real-time metrics are sent to CloudWatch.')
-
- # Run time-consuming operations on separate threads to avoid blocking the test.
- operational_threads = list()
- operational_threads.append(
- AWSMetricsThread(target=query_metrics_from_s3,
- args=(aws_metrics_utils, resource_mappings)))
- operational_threads.append(
- AWSMetricsThread(target=verify_operational_metrics,
- args=(aws_metrics_utils, resource_mappings, start_time)))
- operational_threads.append(
- AWSMetricsThread(target=update_kinesis_analytics_application_status,
- args=(aws_metrics_utils, resource_mappings, False)))
- for thread in operational_threads:
- thread.start()
- for thread in operational_threads:
- thread.join()
-
- @pytest.mark.parametrize('level', ['AWS/Metrics'])
- def test_realtime_and_batch_analytics_no_global_accountid(self,
- level: str,
- launcher: pytest.fixture,
- asset_processor: pytest.fixture,
- workspace: pytest.fixture,
- aws_utils: pytest.fixture,
- resource_mappings: pytest.fixture,
- aws_metrics_utils: pytest.fixture):
- """
- Verify that the metrics events are sent to CloudWatch and S3 for analytics.
- """
- # Remove top-level account ID from resource mappings
- resource_mappings.clear_select_keys([AWS_RESOURCE_MAPPINGS_ACCOUNT_ID_KEY])
- # Start Kinesis analytics application on a separate thread to avoid blocking the test.
- kinesis_analytics_application_thread = AWSMetricsThread(target=update_kinesis_analytics_application_status,
- args=(aws_metrics_utils, resource_mappings, True))
- kinesis_analytics_application_thread.start()
-
- log_monitor = setup(launcher, asset_processor)
-
- # Kinesis analytics application needs to be in the running state before we start the game launcher.
- kinesis_analytics_application_thread.join()
- launcher.args = ['+LoadLevel', level]
- launcher.args.extend(['-rhi=null'])
- start_time = datetime.utcnow()
- with launcher.start(launch_ap=False):
- monitor_metrics_submission(log_monitor)
-
- # Verify that real-time analytics metrics are delivered to CloudWatch.
- aws_metrics_utils.verify_cloud_watch_delivery(
- AWS_METRICS_FEATURE_NAME,
- 'TotalLogins',
- [],
- start_time)
- logger.info('Real-time metrics are sent to CloudWatch.')
-
- # Run time-consuming operations on separate threads to avoid blocking the test.
- operational_threads = list()
- operational_threads.append(
- AWSMetricsThread(target=query_metrics_from_s3,
- args=(aws_metrics_utils, resource_mappings)))
- operational_threads.append(
- AWSMetricsThread(target=verify_operational_metrics,
- args=(aws_metrics_utils, resource_mappings, start_time)))
- operational_threads.append(
- AWSMetricsThread(target=update_kinesis_analytics_application_status,
- args=(aws_metrics_utils, resource_mappings, False)))
- for thread in operational_threads:
- thread.start()
- for thread in operational_threads:
- thread.join()
-
- @pytest.mark.parametrize('level', ['AWS/Metrics'])
- def test_unauthorized_user_request_rejected(self,
- level: str,
- launcher: pytest.fixture,
- asset_processor: pytest.fixture,
- workspace: pytest.fixture):
- """
- Verify that unauthorized users cannot send metrics events to the AWS backed backend.
- """
- log_monitor = setup(launcher, asset_processor)
-
- # Set invalid AWS credentials.
- launcher.args = ['+LoadLevel', level, '+cl_awsAccessKey', 'AKIAIOSFODNN7EXAMPLE',
- '+cl_awsSecretKey', 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY']
- launcher.args.extend(['-rhi=null'])
-
- with launcher.start(launch_ap=False):
- result = log_monitor.monitor_log_for_lines(
- expected_lines=['(Script) - Failed to send metrics.'],
- unexpected_lines=['(Script) - Metrics is sent successfully.'],
- halt_on_unexpected=True)
- assert result, 'Metrics events are sent successfully by unauthorized user'
- logger.info('Unauthorized user is rejected to send metrics.')
-
- def test_clean_up_s3_bucket(self,
- aws_utils: pytest.fixture,
- resource_mappings: pytest.fixture,
- aws_metrics_utils: pytest.fixture):
- """
- Clear the analytics bucket objects so that the S3 bucket can be destroyed during tear down.
- """
- aws_metrics_utils.empty_bucket(
- resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsBucketName'))
+"""
+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
+"""
+
+import logging
+import os
+import pytest
+import typing
+from datetime import datetime
+
+import ly_test_tools.log.log_monitor
+
+from AWS.common import constants
+from AWS.common.resource_mappings import AWS_RESOURCE_MAPPINGS_ACCOUNT_ID_KEY
+from .aws_metrics_custom_thread import AWSMetricsThread
+
+# fixture imports
+from assetpipeline.ap_fixtures.asset_processor_fixture import asset_processor
+from .aws_metrics_utils import aws_metrics_utils
+
+AWS_METRICS_FEATURE_NAME = 'AWSMetrics'
+
+logger = logging.getLogger(__name__)
+
+
+def setup(launcher: pytest.fixture,
+ asset_processor: pytest.fixture) -> pytest.fixture:
+ """
+ Set up the resource mapping configuration and start the log monitor.
+ :param launcher: Client launcher for running the test level.
+ :param asset_processor: asset_processor fixture.
+ :return log monitor object.
+ """
+ asset_processor.start()
+ asset_processor.wait_for_idle()
+
+ file_to_monitor = os.path.join(launcher.workspace.paths.project_log(), constants.GAME_LOG_NAME)
+
+ # Initialize the log monitor.
+ log_monitor = ly_test_tools.log.log_monitor.LogMonitor(launcher=launcher, log_file_path=file_to_monitor)
+
+ return log_monitor
+
+
+def monitor_metrics_submission(log_monitor: pytest.fixture) -> None:
+ """
+ Monitor the messages and notifications for submitting metrics.
+ :param log_monitor: Log monitor to check the log messages.
+ """
+ expected_lines = [
+ '(Script) - Submitted metrics without buffer.',
+ '(Script) - Submitted metrics with buffer.',
+ '(Script) - Flushed the buffered metrics.',
+ '(Script) - Metrics is sent successfully.'
+ ]
+
+ unexpected_lines = [
+ '(Script) - Failed to submit metrics without buffer.',
+ '(Script) - Failed to submit metrics with buffer.',
+ '(Script) - Failed to send metrics.'
+ ]
+
+ result = log_monitor.monitor_log_for_lines(
+ expected_lines=expected_lines,
+ unexpected_lines=unexpected_lines,
+ halt_on_unexpected=True)
+
+ # Assert the log monitor detected expected lines and did not detect any unexpected lines.
+ assert result, (
+ f'Log monitoring failed. Used expected_lines values: {expected_lines} & '
+ f'unexpected_lines values: {unexpected_lines}')
+
+
+def query_metrics_from_s3(aws_metrics_utils: pytest.fixture, resource_mappings: pytest.fixture) -> None:
+ """
+ Verify that the metrics events are delivered to the S3 bucket and can be queried.
+ :param aws_metrics_utils: aws_metrics_utils fixture.
+ :param resource_mappings: resource_mappings fixture.
+ """
+ aws_metrics_utils.verify_s3_delivery(
+ resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsBucketName')
+ )
+ logger.info('Metrics are sent to S3.')
+
+ aws_metrics_utils.run_glue_crawler(
+ resource_mappings.get_resource_name_id('AWSMetrics.EventsCrawlerName'))
+
+ # Remove the events_json table if exists so that the sample query can create a table with the same name.
+ aws_metrics_utils.delete_table(resource_mappings.get_resource_name_id('AWSMetrics.EventDatabaseName'), 'events_json')
+ aws_metrics_utils.run_named_queries(resource_mappings.get_resource_name_id('AWSMetrics.AthenaWorkGroupName'))
+ logger.info('Query metrics from S3 successfully.')
+
+
+def verify_operational_metrics(aws_metrics_utils: pytest.fixture,
+ resource_mappings: pytest.fixture, start_time: datetime) -> None:
+ """
+ Verify that operational health metrics are delivered to CloudWatch.
+ :param aws_metrics_utils: aws_metrics_utils fixture.
+ :param resource_mappings: resource_mappings fixture.
+ :param start_time: Time when the game launcher starts.
+ """
+ aws_metrics_utils.verify_cloud_watch_delivery(
+ 'AWS/Lambda',
+ 'Invocations',
+ [{'Name': 'FunctionName',
+ 'Value': resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsProcessingLambdaName')}],
+ start_time)
+ logger.info('AnalyticsProcessingLambda metrics are sent to CloudWatch.')
+
+ aws_metrics_utils.verify_cloud_watch_delivery(
+ 'AWS/Lambda',
+ 'Invocations',
+ [{'Name': 'FunctionName',
+ 'Value': resource_mappings.get_resource_name_id('AWSMetrics.EventProcessingLambdaName')}],
+ start_time)
+ logger.info('EventsProcessingLambda metrics are sent to CloudWatch.')
+
+
+def update_kinesis_analytics_application_status(aws_metrics_utils: pytest.fixture,
+ resource_mappings: pytest.fixture, start_application: bool) -> None:
+ """
+ Update the Kinesis analytics application to start or stop it.
+ :param aws_metrics_utils: aws_metrics_utils fixture.
+ :param resource_mappings: resource_mappings fixture.
+ :param start_application: whether to start or stop the application.
+ """
+ if start_application:
+ aws_metrics_utils.start_kinesis_data_analytics_application(
+ resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsApplicationName'))
+ else:
+ aws_metrics_utils.stop_kinesis_data_analytics_application(
+ resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsApplicationName'))
+
+@pytest.mark.SUITE_awsi
+@pytest.mark.usefixtures('automatic_process_killer')
+@pytest.mark.usefixtures('aws_credentials')
+@pytest.mark.usefixtures('resource_mappings')
+@pytest.mark.parametrize('assume_role_arn', [constants.ASSUME_ROLE_ARN])
+@pytest.mark.parametrize('feature_name', [AWS_METRICS_FEATURE_NAME])
+@pytest.mark.parametrize('profile_name', ['AWSAutomationTest'])
+@pytest.mark.parametrize('project', ['AutomatedTesting'])
+@pytest.mark.parametrize('region_name', [constants.AWS_REGION])
+@pytest.mark.parametrize('resource_mappings_filename', [constants.AWS_RESOURCE_MAPPING_FILE_NAME])
+@pytest.mark.parametrize('session_name', [constants.SESSION_NAME])
+@pytest.mark.parametrize('stacks', [[f'{constants.AWS_PROJECT_NAME}-{AWS_METRICS_FEATURE_NAME}-{constants.AWS_REGION}']])
+class TestAWSMetricsWindows(object):
+ """
+ Test class to verify the real-time and batch analytics for metrics.
+ """
+ @pytest.mark.parametrize('level', ['levels/aws/metrics/metrics.spawnable'])
+ def test_realtime_and_batch_analytics(self,
+ level: str,
+ launcher: pytest.fixture,
+ asset_processor: pytest.fixture,
+ workspace: pytest.fixture,
+ aws_utils: pytest.fixture,
+ resource_mappings: pytest.fixture,
+ aws_metrics_utils: pytest.fixture):
+ """
+ Verify that the metrics events are sent to CloudWatch and S3 for analytics.
+ """
+ # Start Kinesis analytics application on a separate thread to avoid blocking the test.
+ kinesis_analytics_application_thread = AWSMetricsThread(target=update_kinesis_analytics_application_status,
+ args=(aws_metrics_utils, resource_mappings, True))
+ kinesis_analytics_application_thread.start()
+
+ log_monitor = setup(launcher, asset_processor)
+
+ # Kinesis analytics application needs to be in the running state before we start the game launcher.
+ kinesis_analytics_application_thread.join()
+ launcher.args = ['+LoadLevel', level]
+ launcher.args.extend(['-rhi=null'])
+ start_time = datetime.utcnow()
+ with launcher.start(launch_ap=False):
+ monitor_metrics_submission(log_monitor)
+
+ # Verify that real-time analytics metrics are delivered to CloudWatch.
+ aws_metrics_utils.verify_cloud_watch_delivery(
+ AWS_METRICS_FEATURE_NAME,
+ 'TotalLogins',
+ [],
+ start_time)
+ logger.info('Real-time metrics are sent to CloudWatch.')
+
+ # Run time-consuming operations on separate threads to avoid blocking the test.
+ operational_threads = list()
+ operational_threads.append(
+ AWSMetricsThread(target=query_metrics_from_s3,
+ args=(aws_metrics_utils, resource_mappings)))
+ operational_threads.append(
+ AWSMetricsThread(target=verify_operational_metrics,
+ args=(aws_metrics_utils, resource_mappings, start_time)))
+ operational_threads.append(
+ AWSMetricsThread(target=update_kinesis_analytics_application_status,
+ args=(aws_metrics_utils, resource_mappings, False)))
+ for thread in operational_threads:
+ thread.start()
+ for thread in operational_threads:
+ thread.join()
+
+ @pytest.mark.parametrize('level', ['levels/aws/metrics/metrics.spawnable'])
+ def test_realtime_and_batch_analytics_no_global_accountid(self,
+ level: str,
+ launcher: pytest.fixture,
+ asset_processor: pytest.fixture,
+ workspace: pytest.fixture,
+ aws_utils: pytest.fixture,
+ resource_mappings: pytest.fixture,
+ aws_metrics_utils: pytest.fixture):
+ """
+ Verify that the metrics events are sent to CloudWatch and S3 for analytics.
+ """
+ # Remove top-level account ID from resource mappings
+ resource_mappings.clear_select_keys([AWS_RESOURCE_MAPPINGS_ACCOUNT_ID_KEY])
+ # Start Kinesis analytics application on a separate thread to avoid blocking the test.
+ kinesis_analytics_application_thread = AWSMetricsThread(target=update_kinesis_analytics_application_status,
+ args=(aws_metrics_utils, resource_mappings, True))
+ kinesis_analytics_application_thread.start()
+
+ log_monitor = setup(launcher, asset_processor)
+
+ # Kinesis analytics application needs to be in the running state before we start the game launcher.
+ kinesis_analytics_application_thread.join()
+ launcher.args = ['+LoadLevel', level]
+ launcher.args.extend(['-rhi=null'])
+ start_time = datetime.utcnow()
+ with launcher.start(launch_ap=False):
+ monitor_metrics_submission(log_monitor)
+
+ # Verify that real-time analytics metrics are delivered to CloudWatch.
+ aws_metrics_utils.verify_cloud_watch_delivery(
+ AWS_METRICS_FEATURE_NAME,
+ 'TotalLogins',
+ [],
+ start_time)
+ logger.info('Real-time metrics are sent to CloudWatch.')
+
+ # Run time-consuming operations on separate threads to avoid blocking the test.
+ operational_threads = list()
+ operational_threads.append(
+ AWSMetricsThread(target=query_metrics_from_s3,
+ args=(aws_metrics_utils, resource_mappings)))
+ operational_threads.append(
+ AWSMetricsThread(target=verify_operational_metrics,
+ args=(aws_metrics_utils, resource_mappings, start_time)))
+ operational_threads.append(
+ AWSMetricsThread(target=update_kinesis_analytics_application_status,
+ args=(aws_metrics_utils, resource_mappings, False)))
+ for thread in operational_threads:
+ thread.start()
+ for thread in operational_threads:
+ thread.join()
+
+ @pytest.mark.parametrize('level', ['levels/aws/metrics/metrics.spawnable'])
+ def test_unauthorized_user_request_rejected(self,
+ level: str,
+ launcher: pytest.fixture,
+ asset_processor: pytest.fixture,
+ workspace: pytest.fixture):
+ """
+ Verify that unauthorized users cannot send metrics events to the AWS backed backend.
+ """
+ log_monitor = setup(launcher, asset_processor)
+
+ # Set invalid AWS credentials.
+ launcher.args = ['+LoadLevel', level, '+cl_awsAccessKey', 'AKIAIOSFODNN7EXAMPLE',
+ '+cl_awsSecretKey', 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY']
+ launcher.args.extend(['-rhi=null'])
+
+ with launcher.start(launch_ap=False):
+ result = log_monitor.monitor_log_for_lines(
+ expected_lines=['(Script) - Failed to send metrics.'],
+ unexpected_lines=['(Script) - Metrics is sent successfully.'],
+ halt_on_unexpected=True)
+ assert result, 'Metrics events are sent successfully by unauthorized user'
+ logger.info('Unauthorized user is rejected to send metrics.')
+
+ def test_clean_up_s3_bucket(self,
+ aws_utils: pytest.fixture,
+ resource_mappings: pytest.fixture,
+ aws_metrics_utils: pytest.fixture):
+ """
+ Clear the analytics bucket objects so that the S3 bucket can be destroyed during tear down.
+ """
+ aws_metrics_utils.empty_bucket(
+ resource_mappings.get_resource_name_id('AWSMetrics.AnalyticsBucketName'))
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_custom_thread.py b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_custom_thread.py
similarity index 96%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_custom_thread.py
rename to AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_custom_thread.py
index 1bba9c3e39..99f9072c4b 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_custom_thread.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_custom_thread.py
@@ -1,29 +1,29 @@
-"""
-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
-"""
-
-from threading import Thread
-
-
-class AWSMetricsThread(Thread):
- """
- Custom thread for raising assertion errors on the main thread.
- """
- def __init__(self, **kwargs):
- super().__init__(**kwargs)
- self._error = None
-
- def run(self) -> None:
- try:
- super().run()
- except AssertionError as e:
- self._error = e
-
- def join(self, **kwargs) -> None:
- super().join(**kwargs)
-
- if self._error:
- raise AssertionError(self._error)
+"""
+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
+"""
+
+from threading import Thread
+
+
+class AWSMetricsThread(Thread):
+ """
+ Custom thread for raising assertion errors on the main thread.
+ """
+ def __init__(self, **kwargs):
+ super().__init__(**kwargs)
+ self._error = None
+
+ def run(self) -> None:
+ try:
+ super().run()
+ except AssertionError as e:
+ self._error = e
+
+ def join(self, **kwargs) -> None:
+ super().join(**kwargs)
+
+ if self._error:
+ raise AssertionError(self._error)
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_utils.py
similarity index 97%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py
rename to AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_utils.py
index e7eb486d02..64ee224f4e 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_utils.py
@@ -1,239 +1,239 @@
-"""
-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
-"""
-
-import logging
-import pathlib
-import pytest
-import typing
-
-from datetime import datetime
-from botocore.exceptions import WaiterError
-
-from .aws_metrics_waiters import KinesisAnalyticsApplicationUpdatedWaiter, \
- CloudWatchMetricsDeliveredWaiter, DataLakeMetricsDeliveredWaiter, GlueCrawlerReadyWaiter
-
-logging.getLogger('boto').setLevel(logging.CRITICAL)
-
-# Expected directory and file extension for the S3 objects.
-EXPECTED_S3_DIRECTORY = 'firehose_events/'
-EXPECTED_S3_OBJECT_EXTENSION = '.parquet'
-
-
-class AWSMetricsUtils:
- """
- Provide utils functions for the AWSMetrics gem to interact with the deployed resources.
- """
-
- def __init__(self, aws_utils: pytest.fixture):
- self._aws_util = aws_utils
-
- def start_kinesis_data_analytics_application(self, application_name: str) -> None:
- """
- Start the Kenisis Data Analytics application for real-time analytics.
- :param application_name: Name of the Kenisis Data Analytics application.
- """
- input_id = self.get_kinesis_analytics_application_input_id(application_name)
- assert input_id, 'invalid Kinesis Data Analytics application input.'
-
- client = self._aws_util.client('kinesisanalytics')
- try:
- client.start_application(
- ApplicationName=application_name,
- InputConfigurations=[
- {
- 'Id': input_id,
- 'InputStartingPositionConfiguration': {
- 'InputStartingPosition': 'NOW'
- }
- },
- ]
- )
- except client.exceptions.ResourceInUseException:
- # The application has been started.
- return
-
- try:
- KinesisAnalyticsApplicationUpdatedWaiter(client, 'RUNNING').wait(application_name=application_name)
- except WaiterError as e:
- assert False, f'Failed to start the Kinesis Data Analytics application: {str(e)}.'
-
- def get_kinesis_analytics_application_input_id(self, application_name: str) -> str:
- """
- Get the input ID for the Kenisis Data Analytics application.
- :param application_name: Name of the Kenisis Data Analytics application.
- :return: Input ID for the Kenisis Data Analytics application.
- """
- client = self._aws_util.client('kinesisanalytics')
- response = client.describe_application(
- ApplicationName=application_name
- )
- if not response:
- return ''
- input_descriptions = response.get('ApplicationDetail', {}).get('InputDescriptions', [])
- if len(input_descriptions) != 1:
- return ''
-
- return input_descriptions[0].get('InputId', '')
-
- def stop_kinesis_data_analytics_application(self, application_name: str) -> None:
- """
- Stop the Kenisis Data Analytics application.
- :param application_name: Name of the Kenisis Data Analytics application.
- """
- client = self._aws_util.client('kinesisanalytics')
- client.stop_application(
- ApplicationName=application_name
- )
-
- try:
- KinesisAnalyticsApplicationUpdatedWaiter(client, 'READY').wait(application_name=application_name)
- except WaiterError as e:
- assert False, f'Failed to stop the Kinesis Data Analytics application: {str(e)}.'
-
- def verify_cloud_watch_delivery(self, namespace: str, metrics_name: str,
- dimensions: typing.List[dict], start_time: datetime) -> None:
- """
- Verify that the expected metrics is delivered to CloudWatch.
- :param namespace: Namespace of the metrics.
- :param metrics_name: Name of the metrics.
- :param dimensions: Dimensions of the metrics.
- :param start_time: Start time for generating the metrics.
- """
- client = self._aws_util.client('cloudwatch')
-
- try:
- CloudWatchMetricsDeliveredWaiter(client).wait(
- namespace=namespace,
- metrics_name=metrics_name,
- dimensions=dimensions,
- start_time=start_time
- )
- except WaiterError as e:
- assert False, f'Failed to deliver metrics to CloudWatch: {str(e)}.'
-
- def verify_s3_delivery(self, analytics_bucket_name: str) -> None:
- """
- Verify that metrics are delivered to S3 for batch analytics successfully.
- :param analytics_bucket_name: Name of the deployed S3 bucket.
- """
- client = self._aws_util.client('s3')
- bucket_name = analytics_bucket_name
-
- try:
- DataLakeMetricsDeliveredWaiter(client).wait(bucket_name=bucket_name, prefix=EXPECTED_S3_DIRECTORY)
- except WaiterError as e:
- assert False, f'Failed to find the S3 directory for storing metrics data: {str(e)}.'
-
- # Check whether the data is converted to the expected data format.
- response = client.list_objects_v2(
- Bucket=bucket_name,
- Prefix=EXPECTED_S3_DIRECTORY
- )
- assert response.get('KeyCount', 0) != 0, f'Failed to deliver metrics to the S3 bucket {bucket_name}.'
-
- s3_objects = response.get('Contents', [])
- for s3_object in s3_objects:
- key = s3_object.get('Key', '')
- assert pathlib.Path(key).suffix == EXPECTED_S3_OBJECT_EXTENSION, \
- f'Invalid data format is found in the S3 bucket {bucket_name}'
-
- def run_glue_crawler(self, crawler_name: str) -> None:
- """
- Run the Glue crawler and wait for it to finish.
- :param crawler_name: Name of the Glue crawler
- """
- client = self._aws_util.client('glue')
- try:
- client.start_crawler(
- Name=crawler_name
- )
- except client.exceptions.CrawlerRunningException:
- # The crawler has already been started.
- return
-
- try:
- GlueCrawlerReadyWaiter(client).wait(crawler_name=crawler_name)
- except WaiterError as e:
- assert False, f'Failed to run the Glue crawler: {str(e)}.'
-
- def run_named_queries(self, work_group: str) -> None:
- """
- Run the named queries under the specific Athena work group.
- :param work_group: Name of the Athena work group.
- """
- client = self._aws_util.client('athena')
- # List all the named queries.
- response = client.list_named_queries(
- WorkGroup=work_group
- )
- named_query_ids = response.get('NamedQueryIds', [])
-
- # Run each of the queries.
- for named_query_id in named_query_ids:
- get_named_query_response = client.get_named_query(
- NamedQueryId=named_query_id
- )
- named_query = get_named_query_response.get('NamedQuery', {})
-
- start_query_execution_response = client.start_query_execution(
- QueryString=named_query.get('QueryString', ''),
- QueryExecutionContext={
- 'Database': named_query.get('Database', '')
- },
- WorkGroup=work_group
- )
-
- # Wait for the query to finish.
- state = 'RUNNING'
- while state == 'QUEUED' or state == 'RUNNING':
- get_query_execution_response = client.get_query_execution(
- QueryExecutionId=start_query_execution_response.get('QueryExecutionId', '')
- )
-
- state = get_query_execution_response.get('QueryExecution', {}).get('Status', {}).get('State', '')
-
- assert state == 'SUCCEEDED', f'Failed to run the named query {named_query.get("Name", {})}'
-
- def empty_bucket(self, bucket_name: str) -> None:
- """
- Empty the S3 bucket following:
- https://boto3.amazonaws.com/v1/documentation/api/latest/guide/migrations3.html
-
- :param bucket_name: Name of the S3 bucket.
- """
- s3 = self._aws_util.resource('s3')
- bucket = s3.Bucket(bucket_name)
-
- for key in bucket.objects.all():
- key.delete()
-
- def delete_table(self, database_name: str, table_name: str) -> None:
- """
- Delete an existing Glue table.
-
- :param database_name: Name of the Glue database.
- :param table_name: Name of the table to delete.
- """
- client = self._aws_util.client('glue')
- client.delete_table(
- DatabaseName=database_name,
- Name=table_name
- )
-
-
-@pytest.fixture(scope='function')
-def aws_metrics_utils(
- request: pytest.fixture,
- aws_utils: pytest.fixture):
- """
- Fixture for the AWS metrics util functions.
- :param request: _pytest.fixtures.SubRequest class that handles getting
- a pytest fixture from a pytest function/fixture.
- :param aws_utils: aws_utils fixture.
- """
- aws_utils_obj = AWSMetricsUtils(aws_utils)
- return aws_utils_obj
+"""
+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
+"""
+
+import logging
+import pathlib
+import pytest
+import typing
+
+from datetime import datetime
+from botocore.exceptions import WaiterError
+
+from .aws_metrics_waiters import KinesisAnalyticsApplicationUpdatedWaiter, \
+ CloudWatchMetricsDeliveredWaiter, DataLakeMetricsDeliveredWaiter, GlueCrawlerReadyWaiter
+
+logging.getLogger('boto').setLevel(logging.CRITICAL)
+
+# Expected directory and file extension for the S3 objects.
+EXPECTED_S3_DIRECTORY = 'firehose_events/'
+EXPECTED_S3_OBJECT_EXTENSION = '.parquet'
+
+
+class AWSMetricsUtils:
+ """
+ Provide utils functions for the AWSMetrics gem to interact with the deployed resources.
+ """
+
+ def __init__(self, aws_utils: pytest.fixture):
+ self._aws_util = aws_utils
+
+ def start_kinesis_data_analytics_application(self, application_name: str) -> None:
+ """
+ Start the Kenisis Data Analytics application for real-time analytics.
+ :param application_name: Name of the Kenisis Data Analytics application.
+ """
+ input_id = self.get_kinesis_analytics_application_input_id(application_name)
+ assert input_id, 'invalid Kinesis Data Analytics application input.'
+
+ client = self._aws_util.client('kinesisanalytics')
+ try:
+ client.start_application(
+ ApplicationName=application_name,
+ InputConfigurations=[
+ {
+ 'Id': input_id,
+ 'InputStartingPositionConfiguration': {
+ 'InputStartingPosition': 'NOW'
+ }
+ },
+ ]
+ )
+ except client.exceptions.ResourceInUseException:
+ # The application has been started.
+ return
+
+ try:
+ KinesisAnalyticsApplicationUpdatedWaiter(client, 'RUNNING').wait(application_name=application_name)
+ except WaiterError as e:
+ assert False, f'Failed to start the Kinesis Data Analytics application: {str(e)}.'
+
+ def get_kinesis_analytics_application_input_id(self, application_name: str) -> str:
+ """
+ Get the input ID for the Kenisis Data Analytics application.
+ :param application_name: Name of the Kenisis Data Analytics application.
+ :return: Input ID for the Kenisis Data Analytics application.
+ """
+ client = self._aws_util.client('kinesisanalytics')
+ response = client.describe_application(
+ ApplicationName=application_name
+ )
+ if not response:
+ return ''
+ input_descriptions = response.get('ApplicationDetail', {}).get('InputDescriptions', [])
+ if len(input_descriptions) != 1:
+ return ''
+
+ return input_descriptions[0].get('InputId', '')
+
+ def stop_kinesis_data_analytics_application(self, application_name: str) -> None:
+ """
+ Stop the Kenisis Data Analytics application.
+ :param application_name: Name of the Kenisis Data Analytics application.
+ """
+ client = self._aws_util.client('kinesisanalytics')
+ client.stop_application(
+ ApplicationName=application_name
+ )
+
+ try:
+ KinesisAnalyticsApplicationUpdatedWaiter(client, 'READY').wait(application_name=application_name)
+ except WaiterError as e:
+ assert False, f'Failed to stop the Kinesis Data Analytics application: {str(e)}.'
+
+ def verify_cloud_watch_delivery(self, namespace: str, metrics_name: str,
+ dimensions: typing.List[dict], start_time: datetime) -> None:
+ """
+ Verify that the expected metrics is delivered to CloudWatch.
+ :param namespace: Namespace of the metrics.
+ :param metrics_name: Name of the metrics.
+ :param dimensions: Dimensions of the metrics.
+ :param start_time: Start time for generating the metrics.
+ """
+ client = self._aws_util.client('cloudwatch')
+
+ try:
+ CloudWatchMetricsDeliveredWaiter(client).wait(
+ namespace=namespace,
+ metrics_name=metrics_name,
+ dimensions=dimensions,
+ start_time=start_time
+ )
+ except WaiterError as e:
+ assert False, f'Failed to deliver metrics to CloudWatch: {str(e)}.'
+
+ def verify_s3_delivery(self, analytics_bucket_name: str) -> None:
+ """
+ Verify that metrics are delivered to S3 for batch analytics successfully.
+ :param analytics_bucket_name: Name of the deployed S3 bucket.
+ """
+ client = self._aws_util.client('s3')
+ bucket_name = analytics_bucket_name
+
+ try:
+ DataLakeMetricsDeliveredWaiter(client).wait(bucket_name=bucket_name, prefix=EXPECTED_S3_DIRECTORY)
+ except WaiterError as e:
+ assert False, f'Failed to find the S3 directory for storing metrics data: {str(e)}.'
+
+ # Check whether the data is converted to the expected data format.
+ response = client.list_objects_v2(
+ Bucket=bucket_name,
+ Prefix=EXPECTED_S3_DIRECTORY
+ )
+ assert response.get('KeyCount', 0) != 0, f'Failed to deliver metrics to the S3 bucket {bucket_name}.'
+
+ s3_objects = response.get('Contents', [])
+ for s3_object in s3_objects:
+ key = s3_object.get('Key', '')
+ assert pathlib.Path(key).suffix == EXPECTED_S3_OBJECT_EXTENSION, \
+ f'Invalid data format is found in the S3 bucket {bucket_name}'
+
+ def run_glue_crawler(self, crawler_name: str) -> None:
+ """
+ Run the Glue crawler and wait for it to finish.
+ :param crawler_name: Name of the Glue crawler
+ """
+ client = self._aws_util.client('glue')
+ try:
+ client.start_crawler(
+ Name=crawler_name
+ )
+ except client.exceptions.CrawlerRunningException:
+ # The crawler has already been started.
+ return
+
+ try:
+ GlueCrawlerReadyWaiter(client).wait(crawler_name=crawler_name)
+ except WaiterError as e:
+ assert False, f'Failed to run the Glue crawler: {str(e)}.'
+
+ def run_named_queries(self, work_group: str) -> None:
+ """
+ Run the named queries under the specific Athena work group.
+ :param work_group: Name of the Athena work group.
+ """
+ client = self._aws_util.client('athena')
+ # List all the named queries.
+ response = client.list_named_queries(
+ WorkGroup=work_group
+ )
+ named_query_ids = response.get('NamedQueryIds', [])
+
+ # Run each of the queries.
+ for named_query_id in named_query_ids:
+ get_named_query_response = client.get_named_query(
+ NamedQueryId=named_query_id
+ )
+ named_query = get_named_query_response.get('NamedQuery', {})
+
+ start_query_execution_response = client.start_query_execution(
+ QueryString=named_query.get('QueryString', ''),
+ QueryExecutionContext={
+ 'Database': named_query.get('Database', '')
+ },
+ WorkGroup=work_group
+ )
+
+ # Wait for the query to finish.
+ state = 'RUNNING'
+ while state == 'QUEUED' or state == 'RUNNING':
+ get_query_execution_response = client.get_query_execution(
+ QueryExecutionId=start_query_execution_response.get('QueryExecutionId', '')
+ )
+
+ state = get_query_execution_response.get('QueryExecution', {}).get('Status', {}).get('State', '')
+
+ assert state == 'SUCCEEDED', f'Failed to run the named query {named_query.get("Name", {})}'
+
+ def empty_bucket(self, bucket_name: str) -> None:
+ """
+ Empty the S3 bucket following:
+ https://boto3.amazonaws.com/v1/documentation/api/latest/guide/migrations3.html
+
+ :param bucket_name: Name of the S3 bucket.
+ """
+ s3 = self._aws_util.resource('s3')
+ bucket = s3.Bucket(bucket_name)
+
+ for key in bucket.objects.all():
+ key.delete()
+
+ def delete_table(self, database_name: str, table_name: str) -> None:
+ """
+ Delete an existing Glue table.
+
+ :param database_name: Name of the Glue database.
+ :param table_name: Name of the table to delete.
+ """
+ client = self._aws_util.client('glue')
+ client.delete_table(
+ DatabaseName=database_name,
+ Name=table_name
+ )
+
+
+@pytest.fixture(scope='function')
+def aws_metrics_utils(
+ request: pytest.fixture,
+ aws_utils: pytest.fixture):
+ """
+ Fixture for the AWS metrics util functions.
+ :param request: _pytest.fixtures.SubRequest class that handles getting
+ a pytest fixture from a pytest function/fixture.
+ :param aws_utils: aws_utils fixture.
+ """
+ aws_utils_obj = AWSMetricsUtils(aws_utils)
+ return aws_utils_obj
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_waiters.py
similarity index 96%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py
rename to AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_waiters.py
index 46070a3a64..7b09557c79 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/aws_metrics/aws_metrics_waiters.py
@@ -1,139 +1,139 @@
-"""
-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
-"""
-
-import botocore.client
-import logging
-
-from datetime import timedelta
-from AWS.common.custom_waiter import CustomWaiter, WaitState
-
-logging.getLogger('boto').setLevel(logging.CRITICAL)
-
-
-class KinesisAnalyticsApplicationUpdatedWaiter(CustomWaiter):
- """
- Subclass of the base custom waiter class.
- Wait for the Kinesis analytics application being updated to a specific status.
- """
- def __init__(self, client: botocore.client, status: str):
- """
- Initialize the waiter.
-
- :param client: Boto3 client to use.
- :param status: Expected status.
- """
- super().__init__(
- 'KinesisAnalyticsApplicationUpdated',
- 'DescribeApplication',
- 'ApplicationDetail.ApplicationStatus',
- {status: WaitState.SUCCESS},
- client)
-
- def wait(self, application_name: str):
- """
- Wait for the expected status.
-
- :param application_name: Name of the Kinesis analytics application.
- """
- self._wait(ApplicationName=application_name)
-
-
-class GlueCrawlerReadyWaiter(CustomWaiter):
- """
- Subclass of the base custom waiter class.
- Wait for the Glue crawler to finish its processing. Return when the crawler is in the "Stopping" status
- to avoid wasting too much time in the automation tests on its shutdown process.
- """
- def __init__(self, client: botocore.client):
- """
- Initialize the waiter.
-
- :param client: Boto3 client to use.
- """
- super().__init__(
- 'GlueCrawlerReady',
- 'GetCrawler',
- 'Crawler.State',
- {'STOPPING': WaitState.SUCCESS},
- client)
-
- def wait(self, crawler_name):
- """
- Wait for the expected status.
-
- :param crawler_name: Name of the Glue crawler.
- """
- self._wait(Name=crawler_name)
-
-
-class DataLakeMetricsDeliveredWaiter(CustomWaiter):
- """
- Subclass of the base custom waiter class.
- Wait for the expected directory being created in the S3 bucket.
- """
- def __init__(self, client: botocore.client):
- """
- Initialize the waiter.
-
- :param client: Boto3 client to use.
- """
- super().__init__(
- 'DataLakeMetricsDelivered',
- 'ListObjectsV2',
- 'KeyCount > `0`',
- {True: WaitState.SUCCESS},
- client)
-
- def wait(self, bucket_name, prefix):
- """
- Wait for the expected directory being created.
-
- :param bucket_name: Name of the S3 bucket.
- :param prefix: Name of the expected directory prefix.
- """
- self._wait(Bucket=bucket_name, Prefix=prefix)
-
-
-class CloudWatchMetricsDeliveredWaiter(CustomWaiter):
- """
- Subclass of the base custom waiter class.
- Wait for the expected metrics being delivered to CloudWatch.
- """
- def __init__(self, client: botocore.client):
- """
- Initialize the waiter.
-
- :param client: Boto3 client to use.
- """
- super().__init__(
- 'CloudWatchMetricsDelivered',
- 'GetMetricStatistics',
- 'length(Datapoints) > `0`',
- {True: WaitState.SUCCESS},
- client)
-
- def wait(self, namespace, metrics_name, dimensions, start_time):
- """
- Wait for the expected metrics being delivered.
-
- :param namespace: Namespace of the metrics.
- :param metrics_name: Name of the metrics.
- :param dimensions: Dimensions of the metrics.
- :param start_time: Start time for generating the metrics.
- """
- self._wait(
- Namespace=namespace,
- MetricName=metrics_name,
- Dimensions=dimensions,
- StartTime=start_time,
- EndTime=start_time + timedelta(0, self.timeout),
- Period=60,
- Statistics=[
- 'SampleCount'
- ],
- Unit='Count'
- )
+"""
+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
+"""
+
+import botocore.client
+import logging
+
+from datetime import timedelta
+from AWS.common.custom_waiter import CustomWaiter, WaitState
+
+logging.getLogger('boto').setLevel(logging.CRITICAL)
+
+
+class KinesisAnalyticsApplicationUpdatedWaiter(CustomWaiter):
+ """
+ Subclass of the base custom waiter class.
+ Wait for the Kinesis analytics application being updated to a specific status.
+ """
+ def __init__(self, client: botocore.client, status: str):
+ """
+ Initialize the waiter.
+
+ :param client: Boto3 client to use.
+ :param status: Expected status.
+ """
+ super().__init__(
+ 'KinesisAnalyticsApplicationUpdated',
+ 'DescribeApplication',
+ 'ApplicationDetail.ApplicationStatus',
+ {status: WaitState.SUCCESS},
+ client)
+
+ def wait(self, application_name: str):
+ """
+ Wait for the expected status.
+
+ :param application_name: Name of the Kinesis analytics application.
+ """
+ self._wait(ApplicationName=application_name)
+
+
+class GlueCrawlerReadyWaiter(CustomWaiter):
+ """
+ Subclass of the base custom waiter class.
+ Wait for the Glue crawler to finish its processing. Return when the crawler is in the "Stopping" status
+ to avoid wasting too much time in the automation tests on its shutdown process.
+ """
+ def __init__(self, client: botocore.client):
+ """
+ Initialize the waiter.
+
+ :param client: Boto3 client to use.
+ """
+ super().__init__(
+ 'GlueCrawlerReady',
+ 'GetCrawler',
+ 'Crawler.State',
+ {'STOPPING': WaitState.SUCCESS},
+ client)
+
+ def wait(self, crawler_name):
+ """
+ Wait for the expected status.
+
+ :param crawler_name: Name of the Glue crawler.
+ """
+ self._wait(Name=crawler_name)
+
+
+class DataLakeMetricsDeliveredWaiter(CustomWaiter):
+ """
+ Subclass of the base custom waiter class.
+ Wait for the expected directory being created in the S3 bucket.
+ """
+ def __init__(self, client: botocore.client):
+ """
+ Initialize the waiter.
+
+ :param client: Boto3 client to use.
+ """
+ super().__init__(
+ 'DataLakeMetricsDelivered',
+ 'ListObjectsV2',
+ 'KeyCount > `0`',
+ {True: WaitState.SUCCESS},
+ client)
+
+ def wait(self, bucket_name, prefix):
+ """
+ Wait for the expected directory being created.
+
+ :param bucket_name: Name of the S3 bucket.
+ :param prefix: Name of the expected directory prefix.
+ """
+ self._wait(Bucket=bucket_name, Prefix=prefix)
+
+
+class CloudWatchMetricsDeliveredWaiter(CustomWaiter):
+ """
+ Subclass of the base custom waiter class.
+ Wait for the expected metrics being delivered to CloudWatch.
+ """
+ def __init__(self, client: botocore.client):
+ """
+ Initialize the waiter.
+
+ :param client: Boto3 client to use.
+ """
+ super().__init__(
+ 'CloudWatchMetricsDelivered',
+ 'GetMetricStatistics',
+ 'length(Datapoints) > `0`',
+ {True: WaitState.SUCCESS},
+ client)
+
+ def wait(self, namespace, metrics_name, dimensions, start_time):
+ """
+ Wait for the expected metrics being delivered.
+
+ :param namespace: Namespace of the metrics.
+ :param metrics_name: Name of the metrics.
+ :param dimensions: Dimensions of the metrics.
+ :param start_time: Start time for generating the metrics.
+ """
+ self._wait(
+ Namespace=namespace,
+ MetricName=metrics_name,
+ Dimensions=dimensions,
+ StartTime=start_time,
+ EndTime=start_time + timedelta(0, self.timeout),
+ Period=60,
+ Statistics=[
+ 'SampleCount'
+ ],
+ Unit='Count'
+ )
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/client_auth/__init__.py
similarity index 100%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py
rename to AutomatedTesting/Gem/PythonTests/AWS/client_auth/__init__.py
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/aws_client_auth_automation_test.py b/AutomatedTesting/Gem/PythonTests/AWS/client_auth/aws_client_auth_automation_test.py
similarity index 94%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/aws_client_auth_automation_test.py
rename to AutomatedTesting/Gem/PythonTests/AWS/client_auth/aws_client_auth_automation_test.py
index 077a068a18..b185a155ed 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/aws_client_auth_automation_test.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/client_auth/aws_client_auth_automation_test.py
@@ -40,7 +40,7 @@ class TestAWSClientAuthWindows(object):
Test class to verify AWS Client Auth gem features on Windows.
"""
- @pytest.mark.parametrize('level', ['AWS/ClientAuth'])
+ @pytest.mark.parametrize('level', ['levels/aws/clientauth/clientauth.spawnable'])
def test_anonymous_credentials(self,
level: str,
launcher: pytest.fixture,
@@ -72,7 +72,7 @@ class TestAWSClientAuthWindows(object):
)
assert result, 'Anonymous credentials fetched successfully.'
- @pytest.mark.parametrize('level', ['AWS/ClientAuth'])
+ @pytest.mark.parametrize('level', ['levels/aws/clientauth/clientauth.spawnable'])
def test_anonymous_credentials_no_global_accountid(self,
level: str,
launcher: pytest.fixture,
@@ -140,7 +140,7 @@ class TestAWSClientAuthWindows(object):
except cognito_idp.exceptions.UserNotFoundException:
pass
- launcher.args = ['+LoadLevel', 'AWS/ClientAuthPasswordSignUp']
+ launcher.args = ['+LoadLevel', 'levels/aws/clientauthpasswordsignup/clientauthpasswordsignup.spawnable']
launcher.args.extend(['-rhi=null'])
with launcher.start(launch_ap=False):
@@ -158,7 +158,7 @@ class TestAWSClientAuthWindows(object):
Username='test1'
)
- launcher.args = ['+LoadLevel', 'AWS/ClientAuthPasswordSignIn']
+ launcher.args = ['+LoadLevel', 'levels/aws/clientauthpasswordsignin/clientauthpasswordsignin.spawnable']
launcher.args.extend(['-rhi=null'])
with launcher.start(launch_ap=False):
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/core/__init__.py
similarity index 99%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py
rename to AutomatedTesting/Gem/PythonTests/AWS/core/__init__.py
index bbcbcf1807..f5193b300e 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/core/__init__.py
@@ -4,4 +4,3 @@ For complete copyright and license terms please see the LICENSE at the root of t
SPDX-License-Identifier: Apache-2.0 OR MIT
"""
-
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/core/test_aws_resource_interaction.py b/AutomatedTesting/Gem/PythonTests/AWS/core/test_aws_resource_interaction.py
similarity index 99%
rename from AutomatedTesting/Gem/PythonTests/AWS/Windows/core/test_aws_resource_interaction.py
rename to AutomatedTesting/Gem/PythonTests/AWS/core/test_aws_resource_interaction.py
index 59c517fd1c..367f02cac3 100644
--- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/core/test_aws_resource_interaction.py
+++ b/AutomatedTesting/Gem/PythonTests/AWS/core/test_aws_resource_interaction.py
@@ -84,7 +84,7 @@ def write_test_data_to_dynamodb_table(resource_mappings: pytest.fixture, aws_uti
@pytest.mark.parametrize('session_name', [constants.SESSION_NAME])
@pytest.mark.usefixtures('workspace')
@pytest.mark.parametrize('project', ['AutomatedTesting'])
-@pytest.mark.parametrize('level', ['AWS/Core'])
+@pytest.mark.parametrize('level', ['levels/aws/core/core.spawnable'])
@pytest.mark.usefixtures('resource_mappings')
@pytest.mark.parametrize('resource_mappings_filename', [constants.AWS_RESOURCE_MAPPING_FILE_NAME])
@pytest.mark.parametrize('stacks', [[f'{constants.AWS_PROJECT_NAME}-{AWS_CORE_FEATURE_NAME}',
diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py
index d79e144ae0..905722d103 100644
--- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py
+++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py
@@ -39,10 +39,6 @@ class TestAutomation(EditorTestSuite):
class AtomEditorComponents_DirectionalLightAdded(EditorSharedTest):
from Atom.tests import hydra_AtomEditorComponents_DirectionalLightAdded as test_module
- @pytest.mark.test_case_id("C36525660")
- class AtomEditorComponents_DisplayMapperAdded(EditorSharedTest):
- from Atom.tests import hydra_AtomEditorComponents_DisplayMapperAdded as test_module
-
@pytest.mark.test_case_id("C36525661")
class AtomEditorComponents_EntityReferenceAdded(EditorSharedTest):
from Atom.tests import hydra_AtomEditorComponents_EntityReferenceAdded as test_module
diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py
index f0bb6e72ca..29f90e6807 100644
--- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py
+++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py
@@ -19,13 +19,6 @@ logger = logging.getLogger(__name__)
TEST_DIRECTORY = os.path.join(os.path.dirname(__file__), "tests")
-class TestAtomEditorComponentsSandbox(object):
-
- # It requires at least one test
- def test_Dummy(self, request, editor, level, workspace, project, launcher_platform):
- pass
-
-
@pytest.mark.parametrize("project", ["AutomatedTesting"])
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
@pytest.mark.parametrize("level", ["auto_test"])
@@ -167,10 +160,17 @@ class TestAutomation(EditorTestSuite):
enable_prefab_system = False
+ #this test is intermittently timing out without ever having executed. sandboxing while we investigate cause.
+ @pytest.mark.test_case_id("C36525660")
+ class AtomEditorComponents_DisplayMapperAdded(EditorSharedTest):
+ from Atom.tests import hydra_AtomEditorComponents_DisplayMapperAdded as test_module
+
+ # this test causes editor to crash when using slices. once automation transitions to prefabs it should pass
@pytest.mark.test_case_id("C36529666")
class AtomEditorComponentsLevel_DiffuseGlobalIlluminationAdded(EditorSharedTest):
from Atom.tests import hydra_AtomEditorComponentsLevel_DiffuseGlobalIlluminationAdded as test_module
+ # this test causes editor to crash when using slices. once automation transitions to prefabs it should pass
@pytest.mark.test_case_id("C36525660")
class AtomEditorComponentsLevel_DisplayMapperAdded(EditorSharedTest):
from Atom.tests import hydra_AtomEditorComponentsLevel_DisplayMapperAdded as test_module
diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py
index c7088a54c5..bd213be293 100644
--- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py
+++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py
@@ -40,11 +40,12 @@ def Menus_EditMenuOptions_Work():
("Toggle Pivot Location",),
("Reset Entity Transform",),
("Reset Manipulator",),
- ("Reset Transform (Local)",),
- ("Reset Transform (World)",),
("Hide Selection",),
("Show All",),
- ("Modify", "Snap", "Snap angle"),
+ ("Lock Selection",),
+ ("Unlock All Entities",),
+ ("Modify", "Snap", "Angle snapping"),
+ ("Modify", "Snap", "Grid snapping"),
("Modify", "Transform Mode", "Move"),
("Modify", "Transform Mode", "Rotate"),
("Modify", "Transform Mode", "Scale"),
diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py
index f1b9e5d4d8..deff2855a0 100644
--- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py
+++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py
@@ -39,7 +39,8 @@ def Menus_ViewMenuOptions_Work():
("Viewport", "Go to Location"),
("Viewport", "Remember Location"),
("Viewport", "Switch Camera"),
- ("Viewport", "Show/Hide Helpers"),
+ ("Viewport", "Show Helpers"),
+ ("Viewport", "Show Icons"),
("Refresh Style",),
]
diff --git a/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.ly b/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.ly
deleted file mode 100644
index b4a2d6cb3a..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.ly
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:19f2c4454bb395cdc0a36d1e45e6a384bbd23037af1a2fb93e088ecfa0f10e5b
-size 9343
diff --git a/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.prefab b/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.prefab
new file mode 100644
index 0000000000..8f2fb61c71
--- /dev/null
+++ b/AutomatedTesting/Levels/AWS/ClientAuth/ClientAuth.prefab
@@ -0,0 +1,620 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[2670735447885]",
+ "Entity_[2670735447885]"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 6861302815203973165
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[2670735447885]": {
+ "Id": "Entity_[2670735447885]",
+ "Name": "AnonymousAuthorization",
+ "Components": {
+ "Component_[11400228652398928245]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 11400228652398928245
+ },
+ "Component_[15542812360906781451]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15542812360906781451,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[16858205397479531670]": {
+ "$type": "EditorLockComponent",
+ "Id": 16858205397479531670
+ },
+ "Component_[1921474395300693283]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 1921474395300693283,
+ "m_name": "ConitoAnonymousAuthorization.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{C0B0CEBA-064E-580F-AD81-CFE8CE0D61B1}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{C0B0CEBA-064E-580F-AD81-CFE8CE0D61B1}"
+ }
+ },
+ "Component_[2312432053711106201]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2312432053711106201
+ },
+ "Component_[4066858233846929269]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4066858233846929269
+ },
+ "Component_[6542133807409587028]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6542133807409587028
+ },
+ "Component_[7002965736546436267]": {
+ "$type": "SelectionComponent",
+ "Id": 7002965736546436267
+ },
+ "Component_[7455250879152263787]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7455250879152263787
+ },
+ "Component_[8081535907930415421]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8081535907930415421
+ },
+ "Component_[9630473919092479415]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 9630473919092479415
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/AWS/ClientAuth/filelist.xml b/AutomatedTesting/Levels/AWS/ClientAuth/filelist.xml
deleted file mode 100644
index 6b5b5a8727..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuth/filelist.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/AutomatedTesting/Levels/AWS/ClientAuth/level.pak b/AutomatedTesting/Levels/AWS/ClientAuth/level.pak
deleted file mode 100644
index bd791070e9..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuth/level.pak
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:8a674e05824e5ceec13a0487b318923568710bc8269e5be84adad59c495a7ceb
-size 3610
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.ly b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.ly
deleted file mode 100644
index 40d9ad619c..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.ly
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:a1c0b621525b8e88c3775ea4c60c2197d1e1b060ace9bad9d6efcb0532817e44
-size 9356
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.prefab b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.prefab
new file mode 100644
index 0000000000..46c01bbb0f
--- /dev/null
+++ b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/ClientAuthPasswordSignIn.prefab
@@ -0,0 +1,620 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[3263440934733]",
+ "Entity_[3263440934733]"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 6861302815203973165
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[3263440934733]": {
+ "Id": "Entity_[3263440934733]",
+ "Name": "Auth",
+ "Components": {
+ "Component_[10677660472305013611]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 10677660472305013611
+ },
+ "Component_[12020966173483420539]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 12020966173483420539
+ },
+ "Component_[1395011275436594572]": {
+ "$type": "EditorLockComponent",
+ "Id": 1395011275436594572
+ },
+ "Component_[14204408480276164321]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 14204408480276164321,
+ "m_name": "PasswordSignIn.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{DA0FCA2B-66E4-575B-802E-BA93F35690C1}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{DA0FCA2B-66E4-575B-802E-BA93F35690C1}"
+ }
+ },
+ "Component_[15510129631063791276]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 15510129631063791276
+ },
+ "Component_[2829815269827202953]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 2829815269827202953
+ },
+ "Component_[4152540778425032559]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 4152540778425032559,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[4562090268412258507]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4562090268412258507
+ },
+ "Component_[4826060551136971267]": {
+ "$type": "SelectionComponent",
+ "Id": 4826060551136971267
+ },
+ "Component_[8974703175361704047]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8974703175361704047
+ },
+ "Component_[9513341577149946975]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9513341577149946975
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/filelist.xml b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/filelist.xml
deleted file mode 100644
index ce3f3f3407..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/filelist.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/level.pak b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/level.pak
deleted file mode 100644
index 1af55520b6..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignIn/level.pak
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f318a1787069385de291660f79e350cea2ca2c3ef3b5e0576686066bd9c49395
-size 3667
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.ly b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.ly
deleted file mode 100644
index b3f66ff34a..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.ly
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:afc5d665128738e6bea09e78a16ee38acc923a8ecefff90d987858ce72c395fa
-size 9360
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.prefab b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.prefab
new file mode 100644
index 0000000000..3d85ec02a5
--- /dev/null
+++ b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/ClientAuthPasswordSignUp.prefab
@@ -0,0 +1,620 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[3851851454285]",
+ "Entity_[3851851454285]"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 6861302815203973165
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[3851851454285]": {
+ "Id": "Entity_[3851851454285]",
+ "Name": "Auth",
+ "Components": {
+ "Component_[10199578265902796701]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 10199578265902796701,
+ "m_name": "PasswordSignUp.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{367CEE66-3A7D-549E-BD69-C63612B3F12D}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{367CEE66-3A7D-549E-BD69-C63612B3F12D}"
+ }
+ },
+ "Component_[10665743855533689275]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10665743855533689275
+ },
+ "Component_[15982638153420818774]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15982638153420818774,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[17743308263820862394]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17743308263820862394
+ },
+ "Component_[18074634570765223479]": {
+ "$type": "SelectionComponent",
+ "Id": 18074634570765223479
+ },
+ "Component_[3471158028107369345]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3471158028107369345
+ },
+ "Component_[376079292001997684]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 376079292001997684
+ },
+ "Component_[4387781728620577034]": {
+ "$type": "EditorLockComponent",
+ "Id": 4387781728620577034
+ },
+ "Component_[8591645353763910598]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8591645353763910598
+ },
+ "Component_[9373910525775599099]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9373910525775599099
+ },
+ "Component_[9394316863271268125]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 9394316863271268125
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/filelist.xml b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/filelist.xml
deleted file mode 100644
index 6565342dd4..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/filelist.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/level.pak b/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/level.pak
deleted file mode 100644
index 781de219f7..0000000000
--- a/AutomatedTesting/Levels/AWS/ClientAuthPasswordSignUp/level.pak
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:87882b64688a77815d93c6973929fa21b89dc6c13d4866c710124ce2cd0f411e
-size 3652
diff --git a/AutomatedTesting/Levels/AWS/Core/Core.ly b/AutomatedTesting/Levels/AWS/Core/Core.ly
deleted file mode 100644
index 8b01ee7abe..0000000000
--- a/AutomatedTesting/Levels/AWS/Core/Core.ly
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5242a9b598bc329ef2af2b114092e4e50c7c398cdde4605a0717b0b3ce66d797
-size 10030
diff --git a/AutomatedTesting/Levels/AWS/Core/Core.prefab b/AutomatedTesting/Levels/AWS/Core/Core.prefab
new file mode 100644
index 0000000000..3d2749849b
--- /dev/null
+++ b/AutomatedTesting/Levels/AWS/Core/Core.prefab
@@ -0,0 +1,758 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[1386540226381]",
+ "Entity_[1390835193677]",
+ "Entity_[1395130160973]",
+ "Entity_[1395130160973]"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 6861302815203973165
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[1386540226381]": {
+ "Id": "Entity_[1386540226381]",
+ "Name": "s3",
+ "Components": {
+ "Component_[11158492000035348927]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 11158492000035348927
+ },
+ "Component_[13101294672800983417]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13101294672800983417
+ },
+ "Component_[13312594438559441372]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 13312594438559441372
+ },
+ "Component_[14532086496432860950]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 14532086496432860950
+ },
+ "Component_[15284288439796123368]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 15284288439796123368
+ },
+ "Component_[17553238493971510581]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 17553238493971510581,
+ "m_name": "s3demo.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{D72821C5-1C31-5AE5-891D-30371C49B9E0}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{D72821C5-1C31-5AE5-891D-30371C49B9E0}"
+ }
+ },
+ "Component_[17621265899133139471]": {
+ "$type": "EditorLockComponent",
+ "Id": 17621265899133139471
+ },
+ "Component_[2763569637558196086]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 2763569637558196086,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[3946146016045577093]": {
+ "$type": "SelectionComponent",
+ "Id": 3946146016045577093
+ },
+ "Component_[4521094551057628689]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 4521094551057628689
+ },
+ "Component_[5378520857609165944]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5378520857609165944
+ }
+ }
+ },
+ "Entity_[1390835193677]": {
+ "Id": "Entity_[1390835193677]",
+ "Name": "dynamodb",
+ "Components": {
+ "Component_[13579073750136791325]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 13579073750136791325
+ },
+ "Component_[14581079376974874313]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14581079376974874313
+ },
+ "Component_[15354545119837386836]": {
+ "$type": "SelectionComponent",
+ "Id": 15354545119837386836
+ },
+ "Component_[15913971829919706180]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 15913971829919706180
+ },
+ "Component_[17308449372189366987]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 17308449372189366987
+ },
+ "Component_[17741852956994822371]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17741852956994822371
+ },
+ "Component_[4363122368868820254]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4363122368868820254
+ },
+ "Component_[4890242568951925088]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 4890242568951925088,
+ "m_name": "dynamodbdemo.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{004B97C6-75F3-5B95-ADA4-EBF751EEF697}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{004B97C6-75F3-5B95-ADA4-EBF751EEF697}"
+ }
+ },
+ "Component_[7140725680315799866]": {
+ "$type": "EditorLockComponent",
+ "Id": 7140725680315799866
+ },
+ "Component_[8431133659360426398]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 8431133659360426398,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[9486500593077263666]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 9486500593077263666
+ }
+ }
+ },
+ "Entity_[1395130160973]": {
+ "Id": "Entity_[1395130160973]",
+ "Name": "lambda",
+ "Components": {
+ "Component_[14224781635611846065]": {
+ "$type": "SelectionComponent",
+ "Id": 14224781635611846065
+ },
+ "Component_[14532864313352417822]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14532864313352417822
+ },
+ "Component_[14621438229914413040]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14621438229914413040
+ },
+ "Component_[15642112885025274607]": {
+ "$type": "EditorLockComponent",
+ "Id": 15642112885025274607
+ },
+ "Component_[16340039184260739086]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16340039184260739086
+ },
+ "Component_[17170806711467412600]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 17170806711467412600,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[18080677632538463069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18080677632538463069
+ },
+ "Component_[2663457305102263144]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2663457305102263144
+ },
+ "Component_[4954526281430171003]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 4954526281430171003
+ },
+ "Component_[6251151424244415885]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 6251151424244415885,
+ "m_name": "lambdademo.scriptcanvas",
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "id": "{3DCA213D-534E-5C86-9308-2F7675A08029}"
+ }
+ },
+ "sourceHandle": {
+ "id": "{3DCA213D-534E-5C86-9308-2F7675A08029}"
+ }
+ },
+ "Component_[6526999075003995619]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6526999075003995619
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/AWS/Core/filelist.xml b/AutomatedTesting/Levels/AWS/Core/filelist.xml
deleted file mode 100644
index 9d1fcd2e83..0000000000
--- a/AutomatedTesting/Levels/AWS/Core/filelist.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/AutomatedTesting/Levels/AWS/Core/level.pak b/AutomatedTesting/Levels/AWS/Core/level.pak
deleted file mode 100644
index 01b79da84e..0000000000
--- a/AutomatedTesting/Levels/AWS/Core/level.pak
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4ba2f409fc974c72b8ee8b660d200ed1d013ee8408419b0e91d6d487e71e4997
-size 3774
diff --git a/AutomatedTesting/Levels/AWS/Metrics/Metrics.ly b/AutomatedTesting/Levels/AWS/Metrics/Metrics.ly
deleted file mode 100644
index 12998e89be..0000000000
--- a/AutomatedTesting/Levels/AWS/Metrics/Metrics.ly
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:023992998ab5a1d64b38dacd1d5e1a9dc930ff704289c0656ed6eaba6951d660
-size 9066
diff --git a/AutomatedTesting/Levels/AWS/Metrics/Metrics.prefab b/AutomatedTesting/Levels/AWS/Metrics/Metrics.prefab
new file mode 100644
index 0000000000..7f4144d734
--- /dev/null
+++ b/AutomatedTesting/Levels/AWS/Metrics/Metrics.prefab
@@ -0,0 +1,627 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[2086619895629]",
+ "Entity_[2086619895629]"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 6861302815203973165
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[2086619895629]": {
+ "Id": "Entity_[2086619895629]",
+ "Name": "metrics",
+ "Components": {
+ "Component_[10664937239001700943]": {
+ "$type": "SelectionComponent",
+ "Id": 10664937239001700943
+ },
+ "Component_[12411100785613400502]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12411100785613400502
+ },
+ "Component_[13461617945403887462]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13461617945403887462
+ },
+ "Component_[1398528805938487915]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 1398528805938487915
+ },
+ "Component_[15586634767575159325]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15586634767575159325
+ },
+ "Component_[1737734807882912852]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1737734807882912852
+ },
+ "Component_[2398400563175352537]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 2398400563175352537
+ },
+ "Component_[3845542252660517302]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 3845542252660517302
+ },
+ "Component_[3873433240186817282]": {
+ "$type": "EditorLockComponent",
+ "Id": 3873433240186817282
+ },
+ "Component_[4474288881478318615]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 4474288881478318615,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005923748016357
+ ]
+ }
+ },
+ "Component_[5865591669658426602]": {
+ "$type": "ScriptEditorComponent",
+ "Id": 5865591669658426602,
+ "ScriptComponent": {
+ "Script": {
+ "assetId": {
+ "guid": "{50D66834-9277-5469-892E-DAD087FF4C0E}",
+ "subId": 1
+ },
+ "loadBehavior": "QueueLoad",
+ "assetHint": "levels/aws/metrics/script/metrics.luac"
+ }
+ },
+ "ScriptAsset": {
+ "assetId": {
+ "guid": "{50D66834-9277-5469-892E-DAD087FF4C0E}",
+ "subId": 1
+ },
+ "assetHint": "levels/aws/metrics/script/metrics.luac"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/AWS/Metrics/filelist.xml b/AutomatedTesting/Levels/AWS/Metrics/filelist.xml
deleted file mode 100644
index 3539102346..0000000000
--- a/AutomatedTesting/Levels/AWS/Metrics/filelist.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/AutomatedTesting/Levels/AWS/Metrics/level.pak b/AutomatedTesting/Levels/AWS/Metrics/level.pak
deleted file mode 100644
index fd1f5ac6ad..0000000000
--- a/AutomatedTesting/Levels/AWS/Metrics/level.pak
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e7c0c07b13bb64db344b94d5712e1e802e607a9dee506768b34481f4a76d8505
-size 3593
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/PbrMaterialChart.prefab b/AutomatedTesting/Levels/PbrMaterialChart/PbrMaterialChart.prefab
new file mode 100644
index 0000000000..faa93597de
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/PbrMaterialChart.prefab
@@ -0,0 +1,5361 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "PbrMaterialChart",
+ "Components": {
+ "Component_[10182366347512475253]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 10182366347512475253
+ },
+ "Component_[12917798267488243668]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12917798267488243668
+ },
+ "Component_[3261249813163778338]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3261249813163778338
+ },
+ "Component_[3837204912784440039]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 3837204912784440039
+ },
+ "Component_[4272963378099646759]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 4272963378099646759,
+ "Parent Entity": ""
+ },
+ "Component_[4848458548047175816]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4848458548047175816
+ },
+ "Component_[5787060997243919943]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 5787060997243919943
+ },
+ "Component_[7804170251266531779]": {
+ "$type": "EditorLockComponent",
+ "Id": 7804170251266531779
+ },
+ "Component_[7874177159288365422]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7874177159288365422
+ },
+ "Component_[8018146290632383969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8018146290632383969
+ },
+ "Component_[8452360690590857075]": {
+ "$type": "SelectionComponent",
+ "Id": 8452360690590857075
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1579029125278]": {
+ "Id": "Entity_[1579029125278]",
+ "Name": "PointLights",
+ "Components": {
+ "Component_[12510478104502833762]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 12510478104502833762
+ },
+ "Component_[13423580362045259926]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 13423580362045259926
+ },
+ "Component_[13763004328692227859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13763004328692227859
+ },
+ "Component_[2520589158620366474]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2520589158620366474,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 534931914642899990
+ }
+ ]
+ },
+ "Component_[534931914642899990]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 534931914642899990,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ -0.02220340073108673,
+ 0.013456299901008606,
+ -0.00310519989579916
+ ]
+ }
+ },
+ "Component_[5737862213737495371]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5737862213737495371,
+ "Child Entity Order": [
+ "Entity_[1656338536606]",
+ "Entity_[1660633503902]",
+ "Entity_[1664928471198]",
+ "Entity_[1669223438494]",
+ "Entity_[1673518405790]",
+ "Entity_[1677813373086]",
+ "Entity_[1686403307678]",
+ "Entity_[1690698274974]",
+ "Entity_[1694993242270]",
+ "Entity_[1699288209566]",
+ "Entity_[1703583176862]",
+ "Entity_[1707878144158]",
+ "Entity_[1712173111454]",
+ "Entity_[1716468078750]",
+ "Entity_[464906102212]",
+ "Entity_[494970873284]",
+ "Entity_[460611134916]",
+ "Entity_[490675905988]",
+ "Entity_[456316167620]",
+ "Entity_[486380938692]",
+ "Entity_[452021200324]",
+ "Entity_[482085971396]",
+ "Entity_[447726233028]",
+ "Entity_[477791004100]",
+ "Entity_[443431265732]",
+ "Entity_[473496036804]",
+ "Entity_[439136298436]",
+ "Entity_[469201069508]"
+ ]
+ },
+ "Component_[5835050117930709038]": {
+ "$type": "EditorLockComponent",
+ "Id": 5835050117930709038
+ },
+ "Component_[6088690331735476148]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 6088690331735476148
+ },
+ "Component_[749445421357843144]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 749445421357843144
+ },
+ "Component_[7514335123333124112]": {
+ "$type": "SelectionComponent",
+ "Id": 7514335123333124112
+ }
+ }
+ },
+ "Entity_[1656338536606]": {
+ "Id": "Entity_[1656338536606]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ 0.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5730069629780503964]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 5730069629780503964,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1660633503902]": {
+ "Id": "Entity_[1660633503902]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ 12.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[12938187889472820644]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 12938187889472820644,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1664928471198]": {
+ "Id": "Entity_[1664928471198]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ -10.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[15916755507523201463]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 15916755507523201463,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1669223438494]": {
+ "Id": "Entity_[1669223438494]",
+ "Name": "Light",
+ "Components": {
+ "Component_[11441320324927657842]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 11441320324927657842,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 0.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1673518405790]": {
+ "Id": "Entity_[1673518405790]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 12.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5078442133583813661]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 5078442133583813661,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1677813373086]": {
+ "Id": "Entity_[1677813373086]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ -10.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ },
+ "Component_[9989753495273560981]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 9989753495273560981,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ }
+ }
+ },
+ "Entity_[1686403307678]": {
+ "Id": "Entity_[1686403307678]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ -5.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[16566594251448483688]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 16566594251448483688,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1690698274974]": {
+ "Id": "Entity_[1690698274974]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ -5.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ },
+ "Component_[7725312483818004226]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 7725312483818004226,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ }
+ }
+ },
+ "Entity_[1694993242270]": {
+ "Id": "Entity_[1694993242270]",
+ "Name": "Light",
+ "Components": {
+ "Component_[11871171122135615232]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 11871171122135615232,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ 5.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1699288209566]": {
+ "Id": "Entity_[1699288209566]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 5.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ },
+ "Component_[946758060659896190]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 946758060659896190,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ }
+ }
+ },
+ "Entity_[1703583176862]": {
+ "Id": "Entity_[1703583176862]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ -15.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18375465984866315036]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 18375465984866315036,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1707878144158]": {
+ "Id": "Entity_[1707878144158]",
+ "Name": "Light",
+ "Components": {
+ "Component_[10544885903241229342]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 10544885903241229342,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ -15.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1712173111454]": {
+ "Id": "Entity_[1712173111454]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998569488525,
+ 15.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[2820371548226138928]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 2820371548226138928,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[1716468078750]": {
+ "Id": "Entity_[1716468078750]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 15.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17202118748985219545]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 17202118748985219545,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[220034968733]": {
+ "Id": "Entity_[220034968733]",
+ "Name": "Ball00",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{1FD47684-2E9E-5525-BBCA-251795F9033C}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r00.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]"
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[224329936029]": {
+ "Id": "Entity_[224329936029]",
+ "Name": "Ball01",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B5660D78-818E-5273-AF3D-EC8189E2E6CB}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r01.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 1.9999995231628418,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[224935554679]": {
+ "Id": "Entity_[224935554679]",
+ "Name": "Readme",
+ "Components": {
+ "Component_[10181355386221924165]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 10181355386221924165
+ },
+ "Component_[13072143045335196472]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 13072143045335196472
+ },
+ "Component_[16296166970503880418]": {
+ "$type": "EditorLockComponent",
+ "Id": 16296166970503880418
+ },
+ "Component_[18321120872779505013]": {
+ "$type": "SelectionComponent",
+ "Id": 18321120872779505013
+ },
+ "Component_[1837311764425750149]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1837311764425750149
+ },
+ "Component_[1974029438267401978]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1974029438267401978
+ },
+ "Component_[6189137928773010292]": {
+ "$type": "EditorCommentComponent",
+ "Id": 6189137928773010292,
+ "Configuration": "This level shows StandardPBR materials on a metallic/roughness grid. We only use metallic=0 and metallic=1 for now because we don't have material scripting yet and we don't have 121 separate material files."
+ },
+ "Component_[6233037103326923418]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6233037103326923418,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ 1014.3161010742188,
+ 1031.1007080078125,
+ -12.083206176757813
+ ]
+ }
+ },
+ "Component_[8021470524138221046]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8021470524138221046
+ },
+ "Component_[869896445061711038]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 869896445061711038,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 6233037103326923418
+ },
+ {
+ "ComponentId": 6189137928773010292,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[8844687677689032541]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8844687677689032541
+ }
+ }
+ },
+ "Entity_[227116497304]": {
+ "Id": "Entity_[227116497304]",
+ "Name": "IBL",
+ "Components": {
+ "Component_[10348929778265892995]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 10348929778265892995
+ },
+ "Component_[10541730177588140472]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10541730177588140472,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ -3.0222034454345703,
+ 6.013456344604492,
+ -51.00310516357422
+ ]
+ }
+ },
+ "Component_[11641917065646729270]": {
+ "$type": "SelectionComponent",
+ "Id": 11641917065646729270
+ },
+ "Component_[11941991254095032209]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 11941991254095032209
+ },
+ "Component_[16341934394936873930]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16341934394936873930
+ },
+ "Component_[17356140692640757864]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 17356140692640757864,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{AA144B9D-68F6-5191-9DD1-211B8D72802C}",
+ "subId": 3000
+ },
+ "assetHint": "materialeditor/lightingpresets/konzerthaus_latlong_iblskyboxcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{AA144B9D-68F6-5191-9DD1-211B8D72802C}",
+ "subId": 2000
+ },
+ "assetHint": "materialeditor/lightingpresets/konzerthaus_latlong_iblskyboxcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[1774390999207442542]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 1774390999207442542
+ },
+ "Component_[18079152973233625329]": {
+ "$type": "EditorLockComponent",
+ "Id": 18079152973233625329
+ },
+ "Component_[5784619194218092681]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5784619194218092681
+ },
+ "Component_[948613077222456118]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 948613077222456118
+ },
+ "Component_[9509912405166426602]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 9509912405166426602,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10541730177588140472
+ },
+ {
+ "ComponentId": 17356140692640757864,
+ "SortIndex": 1
+ }
+ ]
+ }
+ }
+ },
+ "Entity_[228624903325]": {
+ "Id": "Entity_[228624903325]",
+ "Name": "Ball02",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{512443BD-9511-5F13-A84A-3ED5DB9E9B5A}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r02.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 3.9999992847442627,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[232919870621]": {
+ "Id": "Entity_[232919870621]",
+ "Name": "Ball03",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E28A5CC5-4B8B-5B90-877A-3D92C75DC75A}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r03.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 5.999998569488525,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[237214837917]": {
+ "Id": "Entity_[237214837917]",
+ "Name": "Ball04",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{1495BCCF-3F96-5D0B-8176-228DB22CEC82}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r04.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[241509805213]": {
+ "Id": "Entity_[241509805213]",
+ "Name": "Ball05",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{40494612-0ABF-55B5-9C56-E968763FCFDE}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r05.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 9.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[245804772509]": {
+ "Id": "Entity_[245804772509]",
+ "Name": "Ball06",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{76CF9D4A-009F-5494-83AB-6E3D4D1B4A36}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r06.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 11.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[250099739805]": {
+ "Id": "Entity_[250099739805]",
+ "Name": "Ball07",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{8431B792-E6CC-51DD-B82E-F3E4A12FCB4A}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r07.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 13.99999713897705,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[254394707101]": {
+ "Id": "Entity_[254394707101]",
+ "Name": "Ball08",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{4B1F29FF-7971-5524-AA1B-0DC2392A33C4}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r08.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 15.99999713897705,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[258689674397]": {
+ "Id": "Entity_[258689674397]",
+ "Name": "Ball09",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{785BE6DE-C0EB-5B47-9438-4F9ECFC34A96}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r09.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 17.999996185302734,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[262984641693]": {
+ "Id": "Entity_[262984641693]",
+ "Name": "Ball10",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C40DE9AE-6756-57E7-B3B4-FB0542B5CD0F}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m00_r10.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[267279608989]",
+ "Transform Data": {
+ "Translate": [
+ 19.999996185302734,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[267279608989]": {
+ "Id": "Entity_[267279608989]",
+ "Name": "Row",
+ "Components": {
+ "Component_[10431128421533587390]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10431128421533587390
+ },
+ "Component_[12384319735386528488]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 12384319735386528488,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 2138630967603263484
+ }
+ ]
+ },
+ "Component_[12698663999690413529]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12698663999690413529
+ },
+ "Component_[13267882596040987058]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 13267882596040987058
+ },
+ "Component_[15031093406648363268]": {
+ "$type": "EditorLockComponent",
+ "Id": 15031093406648363268
+ },
+ "Component_[15177069797419761403]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15177069797419761403,
+ "Child Entity Order": [
+ "Entity_[220034968733]",
+ "Entity_[224329936029]",
+ "Entity_[228624903325]",
+ "Entity_[232919870621]",
+ "Entity_[237214837917]",
+ "Entity_[241509805213]",
+ "Entity_[245804772509]",
+ "Entity_[250099739805]",
+ "Entity_[254394707101]",
+ "Entity_[258689674397]",
+ "Entity_[262984641693]"
+ ]
+ },
+ "Component_[17955329409582714617]": {
+ "$type": "SelectionComponent",
+ "Id": 17955329409582714617
+ },
+ "Component_[2138630967603263484]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 2138630967603263484,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ -0.02220340073108673,
+ -9.986543655395508,
+ -1.0031051635742188
+ ],
+ "Rotate": [
+ 0.0,
+ 0.0,
+ 90.00000762939453
+ ]
+ }
+ },
+ "Component_[3786501212457578744]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3786501212457578744
+ },
+ "Component_[6440613696530771175]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6440613696530771175
+ }
+ }
+ },
+ "Entity_[271574576285]": {
+ "Id": "Entity_[271574576285]",
+ "Name": "Row",
+ "Components": {
+ "Component_[10431128421533587390]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10431128421533587390
+ },
+ "Component_[12384319735386528488]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 12384319735386528488,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 2138630967603263484
+ }
+ ]
+ },
+ "Component_[12698663999690413529]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12698663999690413529
+ },
+ "Component_[13267882596040987058]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 13267882596040987058
+ },
+ "Component_[15031093406648363268]": {
+ "$type": "EditorLockComponent",
+ "Id": 15031093406648363268
+ },
+ "Component_[15177069797419761403]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15177069797419761403,
+ "Child Entity Order": [
+ "Entity_[293049412765]",
+ "Entity_[301639347357]",
+ "Entity_[310229281949]",
+ "Entity_[318819216541]",
+ "Entity_[275869543581]",
+ "Entity_[280164510877]",
+ "Entity_[284459478173]",
+ "Entity_[288754445469]",
+ "Entity_[297344380061]",
+ "Entity_[305934314653]",
+ "Entity_[314524249245]"
+ ]
+ },
+ "Component_[17955329409582714617]": {
+ "$type": "SelectionComponent",
+ "Id": 17955329409582714617
+ },
+ "Component_[2138630967603263484]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 2138630967603263484,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ -0.02220340073108673,
+ -9.986543655395508,
+ 0.9968947768211365
+ ],
+ "Rotate": [
+ 0.0,
+ 0.0,
+ 90.00000762939453
+ ]
+ }
+ },
+ "Component_[3786501212457578744]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3786501212457578744
+ },
+ "Component_[6440613696530771175]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6440613696530771175
+ }
+ }
+ },
+ "Entity_[275869543581]": {
+ "Id": "Entity_[275869543581]",
+ "Name": "Ball04",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{251C4C29-4ECD-5763-AF4F-20675EAC048B}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r04.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 7.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[280164510877]": {
+ "Id": "Entity_[280164510877]",
+ "Name": "Ball05",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{02D082C4-5032-57CC-A081-BC4D8518BCF0}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r05.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 9.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[284459478173]": {
+ "Id": "Entity_[284459478173]",
+ "Name": "Ball06",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FA9D8842-95B2-5371-8352-CBEEEAABE676}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r06.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 11.999998092651367,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[288754445469]": {
+ "Id": "Entity_[288754445469]",
+ "Name": "Ball07",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{522A9626-FF4C-561A-A44A-64B68F7274D2}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r07.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 13.99999713897705,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[293049412765]": {
+ "Id": "Entity_[293049412765]",
+ "Name": "Ball00",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{06DDFD66-D7F5-5D55-8972-6D61276E88F6}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r00.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]"
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[297344380061]": {
+ "Id": "Entity_[297344380061]",
+ "Name": "Ball08",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{060EF1B7-1029-5227-B03B-1415C74E9D65}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r08.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 15.99999713897705,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[301639347357]": {
+ "Id": "Entity_[301639347357]",
+ "Name": "Ball01",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{7B7BC6F8-150A-518F-816E-2F7DBE786461}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r01.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 1.9999995231628418,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[305934314653]": {
+ "Id": "Entity_[305934314653]",
+ "Name": "Ball09",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{270881B6-21E9-509D-A6CD-1046674FB0BE}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r09.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 17.999996185302734,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[310229281949]": {
+ "Id": "Entity_[310229281949]",
+ "Name": "Ball02",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C0538953-C56E-5C1A-BBE2-E6BE04764C20}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r02.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 3.9999992847442627,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[311518247264]": {
+ "Id": "Entity_[311518247264]",
+ "Name": "PbrMaterialChart_Assets",
+ "Components": {
+ "Component_[10482364804718329021]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 10482364804718329021
+ },
+ "Component_[10942888141582930027]": {
+ "$type": "EditorLockComponent",
+ "Id": 10942888141582930027
+ },
+ "Component_[13540203629041536166]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 13540203629041536166,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.0,
+ -90.0
+ ]
+ }
+ },
+ "Component_[13907911826554124970]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13907911826554124970
+ },
+ "Component_[14302898759905097452]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14302898759905097452,
+ "Child Entity Order": [
+ "Entity_[224935554679]",
+ "Entity_[323114183837]",
+ "Entity_[267279608989]",
+ "Entity_[271574576285]",
+ "Entity_[227116497304]",
+ "Entity_[1579029125278]"
+ ]
+ },
+ "Component_[6734926751345496430]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6734926751345496430
+ },
+ "Component_[7859927512474268451]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 7859927512474268451,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 13540203629041536166
+ }
+ ]
+ },
+ "Component_[8550690899908144218]": {
+ "$type": "SelectionComponent",
+ "Id": 8550690899908144218
+ },
+ "Component_[9251711315131563801]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9251711315131563801
+ },
+ "Component_[9755014032434689168]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 9755014032434689168
+ }
+ }
+ },
+ "Entity_[314524249245]": {
+ "Id": "Entity_[314524249245]",
+ "Name": "Ball10",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5EA26E09-E3D6-5181-8E7A-F2E98A24247C}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r10.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 19.999996185302734,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[318819216541]": {
+ "Id": "Entity_[318819216541]",
+ "Name": "Ball03",
+ "Components": {
+ "Component_[11750162722213114821]": {
+ "$type": "SelectionComponent",
+ "Id": 11750162722213114821
+ },
+ "Component_[12608893098077724053]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12608893098077724053
+ },
+ "Component_[13797422028724928908]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 13797422028724928908,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{61D16161-9F39-5A29-B927-ADF58E7E573B}",
+ "subId": 284780167
+ },
+ "assetHint": "objects/sphere.azmodel"
+ },
+ "LodOverride": 255
+ }
+ }
+ },
+ "Component_[1492865274047869171]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1492865274047869171
+ },
+ "Component_[15252998008739701164]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15252998008739701164
+ },
+ "Component_[15365333384879292339]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15365333384879292339,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 5985506260224649992
+ },
+ {
+ "ComponentId": 13797422028724928908,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 5200514760734239788,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[18296307565715962470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18296307565715962470
+ },
+ "Component_[1940145586700385602]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1940145586700385602
+ },
+ "Component_[4820397163316962417]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4820397163316962417
+ },
+ "Component_[5200514760734239788]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5200514760734239788,
+ "Controller": {
+ "Configuration": {
+ "materials": {
+ "{}": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E1A5D708-7A49-5CCA-81C3-4CB337C47703}"
+ },
+ "assetHint": "levels/pbrmaterialchart/materials/basic_m10_r03.azmaterial"
+ }
+ }
+ }
+ }
+ },
+ "materialSlotsByLodEnabled": true
+ },
+ "Component_[5985506260224649992]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5985506260224649992,
+ "Parent Entity": "Entity_[271574576285]",
+ "Transform Data": {
+ "Translate": [
+ 5.999998569488525,
+ 0.0,
+ 0.0
+ ]
+ }
+ },
+ "Component_[7650403257628455609]": {
+ "$type": "EditorLockComponent",
+ "Id": 7650403257628455609
+ }
+ }
+ },
+ "Entity_[323114183837]": {
+ "Id": "Entity_[323114183837]",
+ "Name": "Camera1",
+ "Components": {
+ "Component_[10006292826835803540]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10006292826835803540
+ },
+ "Component_[10455519191869797]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 10455519191869797
+ },
+ "Component_[11437375554946967375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 11437375554946967375
+ },
+ "Component_[12353408053920436955]": {
+ "$type": "SelectionComponent",
+ "Id": 12353408053920436955
+ },
+ "Component_[13096751172875321905]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13096751172875321905
+ },
+ "Component_[14346079281461734018]": {
+ "$type": "EditorLockComponent",
+ "Id": 14346079281461734018
+ },
+ "Component_[14601767610059792758]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14601767610059792758
+ },
+ "Component_[1752468310352442380]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 1752468310352442380,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[18443771986481731838]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18443771986481731838,
+ "Parent Entity": "Entity_[311518247264]",
+ "Transform Data": {
+ "Translate": [
+ 49.97779846191406,
+ 0.013456299901008606,
+ -0.00310519989579916
+ ],
+ "Rotate": [
+ 0.0,
+ 0.0,
+ 90.00000762939453
+ ],
+ "Scale": [
+ 1.0,
+ 1.0,
+ 0.9999998807907104
+ ]
+ }
+ },
+ "Component_[646706054417436776]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 646706054417436776,
+ "Controller": {
+ "Configuration": {
+ "EditorEntityId": 323114183837
+ }
+ }
+ },
+ "Component_[8037556047509300929]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8037556047509300929
+ },
+ "Component_[9357115853003317593]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 9357115853003317593,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 18443771986481731838
+ },
+ {
+ "ComponentId": 646706054417436776,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1752468310352442380,
+ "SortIndex": 2
+ }
+ ]
+ }
+ }
+ },
+ "Entity_[439136298436]": {
+ "Id": "Entity_[439136298436]",
+ "Name": "Light",
+ "Components": {
+ "Component_[11029917022661117076]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 11029917022661117076,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 15.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[443431265732]": {
+ "Id": "Entity_[443431265732]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -10.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18059889152590511471]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 18059889152590511471,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[447726233028]": {
+ "Id": "Entity_[447726233028]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -15.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3116905989016577951]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 3116905989016577951,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[452021200324]": {
+ "Id": "Entity_[452021200324]",
+ "Name": "Light",
+ "Components": {
+ "Component_[11880996669921269387]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 11880996669921269387,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 12.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[456316167620]": {
+ "Id": "Entity_[456316167620]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -15.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[15861630875009954708]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 15861630875009954708,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[460611134916]": {
+ "Id": "Entity_[460611134916]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 0.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[2667740107500775267]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 2667740107500775267,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[464906102212]": {
+ "Id": "Entity_[464906102212]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 5.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ },
+ "Component_[9077284412210882947]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 9077284412210882947,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ }
+ }
+ },
+ "Entity_[469201069508]": {
+ "Id": "Entity_[469201069508]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -10.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[2210433037075578051]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 2210433037075578051,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[473496036804]": {
+ "Id": "Entity_[473496036804]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 5.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[12980894623939584115]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 12980894623939584115,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[477791004100]": {
+ "Id": "Entity_[477791004100]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 12.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18236955021241851736]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 18236955021241851736,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[482085971396]": {
+ "Id": "Entity_[482085971396]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -5.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ },
+ "Component_[868225960524074909]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 868225960524074909,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ }
+ }
+ },
+ "Entity_[486380938692]": {
+ "Id": "Entity_[486380938692]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 0.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[232169833717435589]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 232169833717435589,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[490675905988]": {
+ "Id": "Entity_[490675905988]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ -5.0,
+ 6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18055528880793132775]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 18055528880793132775,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ },
+ "Entity_[494970873284]": {
+ "Id": "Entity_[494970873284]",
+ "Name": "Light",
+ "Components": {
+ "Component_[12284008075844705430]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12284008075844705430,
+ "Parent Entity": "Entity_[1579029125278]",
+ "Transform Data": {
+ "Translate": [
+ -7.999996662139893,
+ 15.0,
+ -6.0
+ ]
+ }
+ },
+ "Component_[13457184847449496840]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13457184847449496840
+ },
+ "Component_[14431842353830635996]": {
+ "$type": "EditorLockComponent",
+ "Id": 14431842353830635996
+ },
+ "Component_[1473579476469110229]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1473579476469110229
+ },
+ "Component_[17008596888127953988]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17008596888127953988
+ },
+ "Component_[17246196475221723560]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 17246196475221723560,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12284008075844705430
+ },
+ {
+ "ComponentId": 7864910209001174169,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[18388752482036682870]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 18388752482036682870
+ },
+ "Component_[3917765902796274739]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3917765902796274739
+ },
+ "Component_[4143676462074671972]": {
+ "$type": "AZ::Render::EditorAreaLightComponent",
+ "Id": 4143676462074671972,
+ "Controller": {
+ "Configuration": {
+ "LightType": 1,
+ "IntensityMode": 1,
+ "Intensity": 50.0,
+ "AttenuationRadius": 79.26654815673828
+ }
+ }
+ },
+ "Component_[4863305662794796025]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4863305662794796025
+ },
+ "Component_[565296772593396698]": {
+ "$type": "EditorSphereShapeComponent",
+ "Id": 565296772593396698,
+ "ShapeColor": [
+ 1.0,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "SphereShape": {
+ "Configuration": {
+ "Radius": 0.05000000074505806
+ }
+ }
+ },
+ "Component_[5902189275159544426]": {
+ "$type": "SelectionComponent",
+ "Id": 5902189275159544426
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic.material
new file mode 100644
index 0000000000..32ac8dfd10
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic.material
@@ -0,0 +1,32 @@
+{
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "baseColor": {
+ "color": [ 1.0, 1.0, 1.0 ],
+ "factor": 0.75,
+ "useTexture": false,
+ "textureMap": ""
+ },
+ "metallic": {
+ "factor": 0.0,
+ "useTexture": false,
+ "textureMap": ""
+ },
+ "roughness": {
+ "factor": 0.0,
+ "useTexture": false,
+ "textureMap": ""
+ },
+ "specularF0": {
+ "factor": 0.5,
+ "useTexture": false,
+ "textureMap": ""
+ },
+ "normal": {
+ "factor": 1.0,
+ "useTexture": false,
+ "textureMap": ""
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r00.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r00.material
new file mode 100644
index 0000000000..1c1096bf12
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r00.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.0
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r01.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r01.material
new file mode 100644
index 0000000000..33148f3f73
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r01.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.1
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r02.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r02.material
new file mode 100644
index 0000000000..38339454cb
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r02.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.2
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r03.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r03.material
new file mode 100644
index 0000000000..e21ab5775a
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r03.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.3
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r04.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r04.material
new file mode 100644
index 0000000000..0272e66081
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r04.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.4
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r05.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r05.material
new file mode 100644
index 0000000000..67d51777a4
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r05.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.5
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r06.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r06.material
new file mode 100644
index 0000000000..3136f654e6
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r06.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.6
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r07.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r07.material
new file mode 100644
index 0000000000..a79744ea11
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r07.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.7
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r08.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r08.material
new file mode 100644
index 0000000000..1372283500
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r08.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.8
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r09.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r09.material
new file mode 100644
index 0000000000..d1c951e53c
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r09.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 0.9
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r10.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r10.material
new file mode 100644
index 0000000000..d34fc46530
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m00_r10.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 0.0
+ },
+ "roughness": {
+ "factor": 1.0
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r00.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r00.material
new file mode 100644
index 0000000000..92ddfec7c4
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r00.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.0
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r01.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r01.material
new file mode 100644
index 0000000000..874422384a
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r01.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.1
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r02.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r02.material
new file mode 100644
index 0000000000..b017add10b
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r02.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.2
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r03.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r03.material
new file mode 100644
index 0000000000..5353d651c8
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r03.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.3
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r04.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r04.material
new file mode 100644
index 0000000000..6dd47e4e3b
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r04.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.4
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r05.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r05.material
new file mode 100644
index 0000000000..04912cbfd4
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r05.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.5
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r06.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r06.material
new file mode 100644
index 0000000000..27f7f6ff42
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r06.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.6
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r07.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r07.material
new file mode 100644
index 0000000000..e2b5df681c
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r07.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.7
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r08.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r08.material
new file mode 100644
index 0000000000..5418f9c855
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r08.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.8
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r09.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r09.material
new file mode 100644
index 0000000000..dd1ec3489a
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r09.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 0.9
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r10.material b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r10.material
new file mode 100644
index 0000000000..5f9317d2cc
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/materials/basic_m10_r10.material
@@ -0,0 +1,13 @@
+{
+ "parentMaterial": "./basic.material",
+ "materialType": "Materials/Types/StandardPBR.materialtype",
+ "propertyLayoutVersion": 1,
+ "properties": {
+ "metallic": {
+ "factor": 1.0
+ },
+ "roughness": {
+ "factor": 1.0
+ }
+ }
+}
diff --git a/AutomatedTesting/Levels/PbrMaterialChart/tags.txt b/AutomatedTesting/Levels/PbrMaterialChart/tags.txt
new file mode 100644
index 0000000000..0d6c1880e7
--- /dev/null
+++ b/AutomatedTesting/Levels/PbrMaterialChart/tags.txt
@@ -0,0 +1,12 @@
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
diff --git a/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/10KEntityCpuPerfTest.prefab b/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/10KEntityCpuPerfTest.prefab
new file mode 100644
index 0000000000..5024ca9192
--- /dev/null
+++ b/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/10KEntityCpuPerfTest.prefab
@@ -0,0 +1,1032 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Instance_[470615713748]/ContainerEntity",
+ "Instance_[62786296211412]/ContainerEntity",
+ "Instance_[513945563413]/ContainerEntity",
+ "Instance_[612729811221]/ContainerEntity",
+ "Instance_[745873797397]/ContainerEntity"
+ ]
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 4792520350429473643
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[12198510776899974386]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 12198510776899974386,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ }
+ },
+ "Instances": {
+ "Instance_[470615713748]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[513945563413]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 10.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[612729811221]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 15.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[62786296211412]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 5.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797397]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 20.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797497]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 25.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797597]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 30.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797697]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 35.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797797]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 40.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797897]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 45.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873797997]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798097]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 55.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798197]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 60.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798297]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 65.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798397]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 70.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798497]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 75.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798597]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 80.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798697]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 85.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798797]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 90.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798897]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 95.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873798997]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 100.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[745873799097]": {
+ "Source": "Prefabs/TestData/Graphics/AtomCubeWall.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Parent Entity",
+ "value": "../Entity_[1146574390643]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/0",
+ "value": 50.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/1",
+ "value": 105.0
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5052757994340238524]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/tags.txt b/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/tags.txt
new file mode 100644
index 0000000000..0d6c1880e7
--- /dev/null
+++ b/AutomatedTesting/Levels/Performance/10KEntityCpuPerfTest/tags.txt
@@ -0,0 +1,12 @@
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
diff --git a/AutomatedTesting/Levels/Performance/10kVegInstancesTest/10KVegInstancesTest.prefab b/AutomatedTesting/Levels/Performance/10kVegInstancesTest/10KVegInstancesTest.prefab
new file mode 100644
index 0000000000..4e6b17de73
--- /dev/null
+++ b/AutomatedTesting/Levels/Performance/10kVegInstancesTest/10KVegInstancesTest.prefab
@@ -0,0 +1,4216 @@
+{
+ "ContainerEntity": {
+ "Id": "Entity_[1146574390643]",
+ "Name": "Level",
+ "Components": {
+ "Component_[10641544592923449938]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10641544592923449938
+ },
+ "Component_[12039882709170782873]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 12039882709170782873
+ },
+ "Component_[12265484671603697631]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12265484671603697631
+ },
+ "Component_[14126657869720434043]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14126657869720434043,
+ "Child Entity Order": [
+ "Entity_[1176639161715]",
+ "Entity_[655472831242]",
+ "Entity_[659767798538]"
+ ]
+ },
+ "Component_[14900044899939389494]": {
+ "$type": "EditorDebugComponent",
+ "Id": 14900044899939389494,
+ "Configuration": {
+ "ShowDebugStats": true
+ }
+ },
+ "Component_[15230859088967841193]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15230859088967841193,
+ "Parent Entity": ""
+ },
+ "Component_[16239496886950819870]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16239496886950819870
+ },
+ "Component_[16599802339219703605]": {
+ "$type": "EditorLevelSettingsComponent",
+ "Id": 16599802339219703605,
+ "Configuration": {
+ "AreaSystemConfig": {
+ "ViewRectangleSize": 25,
+ "SectorDensity": 2,
+ "SectorSizeInMeters": 10
+ }
+ }
+ },
+ "Component_[5688118765544765547]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5688118765544765547
+ },
+ "Component_[6545738857812235305]": {
+ "$type": "SelectionComponent",
+ "Id": 6545738857812235305
+ },
+ "Component_[7247035804068349658]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7247035804068349658
+ },
+ "Component_[9307224322037797205]": {
+ "$type": "EditorLockComponent",
+ "Id": 9307224322037797205
+ },
+ "Component_[9562516168917670048]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9562516168917670048
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1155164325235]": {
+ "Id": "Entity_[1155164325235]",
+ "Name": "Sun",
+ "Components": {
+ "Component_[10440557478882592717]": {
+ "$type": "SelectionComponent",
+ "Id": 10440557478882592717
+ },
+ "Component_[13620450453324765907]": {
+ "$type": "EditorLockComponent",
+ "Id": 13620450453324765907
+ },
+ "Component_[2134313378593666258]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2134313378593666258
+ },
+ "Component_[234010807770404186]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 234010807770404186
+ },
+ "Component_[2970359110423865725]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2970359110423865725
+ },
+ "Component_[3722854130373041803]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3722854130373041803
+ },
+ "Component_[5992533738676323195]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5992533738676323195
+ },
+ "Component_[7378860763541895402]": {
+ "$type": "AZ::Render::EditorDirectionalLightComponent",
+ "Id": 7378860763541895402,
+ "Controller": {
+ "Configuration": {
+ "Intensity": 1.0,
+ "CameraEntityId": "",
+ "ShadowFilterMethod": 1
+ }
+ }
+ },
+ "Component_[7892834440890947578]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7892834440890947578,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.0,
+ 13.487043380737305
+ ],
+ "Rotate": [
+ -76.13099670410156,
+ -0.847000002861023,
+ -15.8100004196167
+ ]
+ }
+ },
+ "Component_[8599729549570828259]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8599729549570828259
+ },
+ "Component_[952797371922080273]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 952797371922080273
+ }
+ }
+ },
+ "Entity_[1159459292531]": {
+ "Id": "Entity_[1159459292531]",
+ "Name": "Ground",
+ "Components": {
+ "Component_[11701138785793981042]": {
+ "$type": "SelectionComponent",
+ "Id": 11701138785793981042
+ },
+ "Component_[12260880513256986252]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12260880513256986252
+ },
+ "Component_[13711420870643673468]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 13711420870643673468
+ },
+ "Component_[138002849734991713]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 138002849734991713
+ },
+ "Component_[16578565737331764849]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16578565737331764849,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[16919232076966545697]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16919232076966545697
+ },
+ "Component_[5182430712893438093]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 5182430712893438093
+ },
+ "Component_[5675108321710651991]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5675108321710651991,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
+ "subId": 277889906
+ },
+ "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[5681893399601237518]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5681893399601237518
+ },
+ "Component_[592692962543397545]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 592692962543397545
+ },
+ "Component_[7090012899106946164]": {
+ "$type": "EditorLockComponent",
+ "Id": 7090012899106946164
+ },
+ "Component_[9410832619875640998]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9410832619875640998
+ }
+ }
+ },
+ "Entity_[1163754259827]": {
+ "Id": "Entity_[1163754259827]",
+ "Name": "Camera",
+ "Components": {
+ "Component_[11895140916889160460]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11895140916889160460
+ },
+ "Component_[16880285896855930892]": {
+ "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
+ "Id": 16880285896855930892,
+ "Controller": {
+ "Configuration": {
+ "Field of View": 55.0,
+ "EditorEntityId": 17772187112516355261
+ }
+ }
+ },
+ "Component_[17187464423780271193]": {
+ "$type": "EditorLockComponent",
+ "Id": 17187464423780271193
+ },
+ "Component_[17495696818315413311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17495696818315413311
+ },
+ "Component_[18086214374043522055]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18086214374043522055,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Translate": [
+ -2.3000001907348633,
+ -3.9368600845336914,
+ 1.0
+ ],
+ "Rotate": [
+ -2.050307512283325,
+ 1.9552897214889526,
+ -43.623355865478516
+ ]
+ }
+ },
+ "Component_[18387556550380114975]": {
+ "$type": "SelectionComponent",
+ "Id": 18387556550380114975
+ },
+ "Component_[2654521436129313160]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2654521436129313160
+ },
+ "Component_[5265045084611556958]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5265045084611556958
+ },
+ "Component_[7169798125182238623]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7169798125182238623
+ },
+ "Component_[7255796294953281766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 7255796294953281766,
+ "m_template": {
+ "$type": "FlyCameraInputComponent"
+ }
+ },
+ "Component_[8866210352157164042]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8866210352157164042
+ },
+ "Component_[9129253381063760879]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9129253381063760879
+ }
+ }
+ },
+ "Entity_[1168049227123]": {
+ "Id": "Entity_[1168049227123]",
+ "Name": "Grid",
+ "Components": {
+ "Component_[11443347433215807130]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11443347433215807130
+ },
+ "Component_[11779275529534764488]": {
+ "$type": "SelectionComponent",
+ "Id": 11779275529534764488
+ },
+ "Component_[14249419413039427459]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14249419413039427459
+ },
+ "Component_[15448581635946161318]": {
+ "$type": "AZ::Render::EditorGridComponent",
+ "Id": 15448581635946161318,
+ "Controller": {
+ "Configuration": {
+ "primarySpacing": 4.0,
+ "primaryColor": [
+ 0.501960813999176,
+ 0.501960813999176,
+ 0.501960813999176
+ ],
+ "secondarySpacing": 0.5,
+ "secondaryColor": [
+ 0.250980406999588,
+ 0.250980406999588,
+ 0.250980406999588
+ ]
+ }
+ }
+ },
+ "Component_[1843303322527297409]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1843303322527297409
+ },
+ "Component_[380249072065273654]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 380249072065273654,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[7476660583684339787]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7476660583684339787
+ },
+ "Component_[7557626501215118375]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7557626501215118375
+ },
+ "Component_[7984048488947365511]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7984048488947365511
+ },
+ "Component_[8118181039276487398]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118181039276487398
+ },
+ "Component_[9189909764215270515]": {
+ "$type": "EditorLockComponent",
+ "Id": 9189909764215270515
+ }
+ }
+ },
+ "Entity_[1172344194419]": {
+ "Id": "Entity_[1172344194419]",
+ "Name": "Shader Ball",
+ "Components": {
+ "Component_[10789351944715265527]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10789351944715265527
+ },
+ "Component_[12037033284781049225]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12037033284781049225
+ },
+ "Component_[13759153306105970079]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13759153306105970079
+ },
+ "Component_[14135560884830586279]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14135560884830586279
+ },
+ "Component_[16247165675903986673]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16247165675903986673
+ },
+ "Component_[18082433625958885247]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 18082433625958885247
+ },
+ "Component_[6472623349872972660]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6472623349872972660,
+ "Parent Entity": "Entity_[1176639161715]",
+ "Transform Data": {
+ "Rotate": [
+ 0.0,
+ 0.10000000149011612,
+ 180.0
+ ]
+ }
+ },
+ "Component_[6495255223970673916]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 6495255223970673916,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{FD340C30-755C-5911-92A3-19A3F7A77931}",
+ "subId": 281415304
+ },
+ "assetHint": "objects/shaderball/shaderball_default_1m.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[8056625192494070973]": {
+ "$type": "SelectionComponent",
+ "Id": 8056625192494070973
+ },
+ "Component_[8550141614185782969]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8550141614185782969
+ },
+ "Component_[9439770997198325425]": {
+ "$type": "EditorLockComponent",
+ "Id": 9439770997198325425
+ }
+ }
+ },
+ "Entity_[1176639161715]": {
+ "Id": "Entity_[1176639161715]",
+ "Name": "Atom Default Environment",
+ "Components": {
+ "Component_[10757302973393310045]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10757302973393310045,
+ "Parent Entity": "Entity_[1146574390643]"
+ },
+ "Component_[14505817420424255464]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14505817420424255464,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10757302973393310045
+ }
+ ]
+ },
+ "Component_[14988041764659020032]": {
+ "$type": "EditorLockComponent",
+ "Id": 14988041764659020032
+ },
+ "Component_[15808690248755038124]": {
+ "$type": "SelectionComponent",
+ "Id": 15808690248755038124
+ },
+ "Component_[15900837685796817138]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15900837685796817138
+ },
+ "Component_[3298767348226484884]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3298767348226484884
+ },
+ "Component_[4076975109609220594]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4076975109609220594
+ },
+ "Component_[5679760548946028854]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5679760548946028854
+ },
+ "Component_[5855590796136709437]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5855590796136709437,
+ "Child Entity Order": [
+ "Entity_[1155164325235]",
+ "Entity_[1180934129011]",
+ "Entity_[1172344194419]",
+ "Entity_[1168049227123]",
+ "Entity_[1163754259827]",
+ "Entity_[1159459292531]"
+ ]
+ },
+ "Component_[9277695270015777859]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9277695270015777859
+ }
+ }
+ },
+ "Entity_[1180934129011]": {
+ "Id": "Entity_[1180934129011]",
+ "Name": "Global Sky",
+ "Components": {
+ "Component_[11231930600558681245]": {
+ "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+ "Id": 11231930600558681245,
+ "Controller": {
+ "Configuration": {
+ "CubemapAsset": {
+ "assetId": {
+ "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
+ "subId": 1000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[11980494120202836095]": {
+ "$type": "SelectionComponent",
+ "Id": 11980494120202836095
+ },
+ "Component_[1428633914413949476]": {
+ "$type": "EditorLockComponent",
+ "Id": 1428633914413949476
+ },
+ "Component_[14936200426671614999]": {
+ "$type": "AZ::Render::EditorImageBasedLightComponent",
+ "Id": 14936200426671614999,
+ "Controller": {
+ "Configuration": {
+ "diffuseImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 3000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
+ },
+ "specularImageAsset": {
+ "assetId": {
+ "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+ "subId": 2000
+ },
+ "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+ }
+ }
+ }
+ },
+ "Component_[14994774102579326069]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14994774102579326069
+ },
+ "Component_[15417479889044493340]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15417479889044493340
+ },
+ "Component_[15826613364991382688]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15826613364991382688
+ },
+ "Component_[1665003113283562343]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1665003113283562343
+ },
+ "Component_[3704934735944502280]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3704934735944502280
+ },
+ "Component_[5698542331457326479]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5698542331457326479
+ },
+ "Component_[6644513399057217122]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 6644513399057217122,
+ "Parent Entity": "Entity_[1176639161715]"
+ },
+ "Component_[931091830724002070]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 931091830724002070
+ }
+ }
+ },
+ "Entity_[2994134174757065]": {
+ "Id": "Entity_[2994134174757065]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 31.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994138469724361]": {
+ "Id": "Entity_[2994138469724361]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 33.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994142764691657]": {
+ "Id": "Entity_[2994142764691657]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 29.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994147059658953]": {
+ "Id": "Entity_[2994147059658953]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 27.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994151354626249]": {
+ "Id": "Entity_[2994151354626249]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 19.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994155649593545]": {
+ "Id": "Entity_[2994155649593545]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 25.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994159944560841]": {
+ "Id": "Entity_[2994159944560841]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 37.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994164239528137]": {
+ "Id": "Entity_[2994164239528137]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 35.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994168534495433]": {
+ "Id": "Entity_[2994168534495433]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 21.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[2994172829462729]": {
+ "Id": "Entity_[2994172829462729]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 23.24283218383789
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446213842399433]": {
+ "Id": "Entity_[3446213842399433]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 49.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446218137366729]": {
+ "Id": "Entity_[3446218137366729]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 41.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446222432334025]": {
+ "Id": "Entity_[3446222432334025]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 45.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446226727301321]": {
+ "Id": "Entity_[3446226727301321]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 57.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446231022268617]": {
+ "Id": "Entity_[3446231022268617]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 53.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446235317235913]": {
+ "Id": "Entity_[3446235317235913]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 43.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446239612203209]": {
+ "Id": "Entity_[3446239612203209]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 51.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446243907170505]": {
+ "Id": "Entity_[3446243907170505]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 47.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446248202137801]": {
+ "Id": "Entity_[3446248202137801]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 39.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[3446252497105097]": {
+ "Id": "Entity_[3446252497105097]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 55.431697845458984
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073064319250633]": {
+ "Id": "Entity_[4073064319250633]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 72.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073068614217929]": {
+ "Id": "Entity_[4073068614217929]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 60.243099212646484
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073072909185225]": {
+ "Id": "Entity_[4073072909185225]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 78.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073077204152521]": {
+ "Id": "Entity_[4073077204152521]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 68.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073081499119817]": {
+ "Id": "Entity_[4073081499119817]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 62.243099212646484
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073085794087113]": {
+ "Id": "Entity_[4073085794087113]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 76.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073090089054409]": {
+ "Id": "Entity_[4073090089054409]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 70.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073094384021705]": {
+ "Id": "Entity_[4073094384021705]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 64.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073098678989001]": {
+ "Id": "Entity_[4073098678989001]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 66.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[4073102973956297]": {
+ "Id": "Entity_[4073102973956297]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 74.24310302734375
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[612523158282]": {
+ "Id": "Entity_[612523158282]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 0.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[616818125578]": {
+ "Id": "Entity_[616818125578]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 18.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[621113092874]": {
+ "Id": "Entity_[621113092874]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 2.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[625408060170]": {
+ "Id": "Entity_[625408060170]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 16.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[629703027466]": {
+ "Id": "Entity_[629703027466]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 14.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[633997994762]": {
+ "Id": "Entity_[633997994762]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 12.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[638292962058]": {
+ "Id": "Entity_[638292962058]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 4.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[642587929354]": {
+ "Id": "Entity_[642587929354]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 10.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[646882896650]": {
+ "Id": "Entity_[646882896650]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 8.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[651177863946]": {
+ "Id": "Entity_[651177863946]",
+ "Name": "Surface",
+ "Components": {
+ "Component_[11461736083966389166]": {
+ "$type": "EditorSurfaceDataShapeComponent",
+ "Id": 11461736083966389166
+ },
+ "Component_[13283029886763197381]": {
+ "$type": "EditorLockComponent",
+ "Id": 13283029886763197381
+ },
+ "Component_[14567565716714370511]": {
+ "$type": "SelectionComponent",
+ "Id": 14567565716714370511
+ },
+ "Component_[14826005606950858247]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14826005606950858247
+ },
+ "Component_[15952534836289892585]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15952534836289892585
+ },
+ "Component_[16429683758229234581]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 16429683758229234581
+ },
+ "Component_[3145304225809715428]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3145304225809715428,
+ "Parent Entity": "Entity_[655472831242]",
+ "Transform Data": {
+ "Translate": [
+ 24.860464096069336,
+ 6.0520172119140625,
+ 6.0
+ ]
+ }
+ },
+ "Component_[3194434268397003277]": {
+ "$type": "EditorBoxShapeComponent",
+ "Id": 3194434268397003277,
+ "Visible": false,
+ "DisplayFilled": false,
+ "BoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 0.10000000149011612
+ ]
+ }
+ }
+ },
+ "Component_[5124743265172522601]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 5124743265172522601
+ },
+ "Component_[6141261141385234831]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6141261141385234831
+ },
+ "Component_[8075217947437400102]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8075217947437400102
+ },
+ "Component_[9742596769363363433]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9742596769363363433
+ }
+ }
+ },
+ "Entity_[655472831242]": {
+ "Id": "Entity_[655472831242]",
+ "Name": "Surfaces",
+ "Components": {
+ "Component_[11463830567025741777]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11463830567025741777,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 25.139535903930664,
+ 43.94798278808594,
+ 0.0
+ ]
+ }
+ },
+ "Component_[16576383876931487287]": {
+ "$type": "EditorLockComponent",
+ "Id": 16576383876931487287
+ },
+ "Component_[17475328349202721984]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 17475328349202721984
+ },
+ "Component_[2693664693208376125]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 2693664693208376125
+ },
+ "Component_[3772848404212958248]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 3772848404212958248
+ },
+ "Component_[3891212684133169478]": {
+ "$type": "SelectionComponent",
+ "Id": 3891212684133169478
+ },
+ "Component_[4930031329153667734]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4930031329153667734
+ },
+ "Component_[5015604486311198963]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5015604486311198963,
+ "Child Entity Order": [
+ "Entity_[612523158282]",
+ "Entity_[621113092874]",
+ "Entity_[638292962058]",
+ "Entity_[651177863946]",
+ "Entity_[646882896650]",
+ "Entity_[642587929354]",
+ "Entity_[633997994762]",
+ "Entity_[629703027466]",
+ "Entity_[625408060170]",
+ "Entity_[616818125578]",
+ "Entity_[2994164239528137]",
+ "Entity_[2994155649593545]",
+ "Entity_[2994134174757065]",
+ "Entity_[2994142764691657]",
+ "Entity_[2994138469724361]",
+ "Entity_[2994159944560841]",
+ "Entity_[2994151354626249]",
+ "Entity_[2994147059658953]",
+ "Entity_[2994172829462729]",
+ "Entity_[2994168534495433]",
+ "Entity_[3446243907170505]",
+ "Entity_[3446213842399433]",
+ "Entity_[3446239612203209]",
+ "Entity_[3446226727301321]",
+ "Entity_[3446218137366729]",
+ "Entity_[3446231022268617]",
+ "Entity_[3446222432334025]",
+ "Entity_[3446252497105097]",
+ "Entity_[3446248202137801]",
+ "Entity_[3446235317235913]",
+ "Entity_[4073090089054409]",
+ "Entity_[4073064319250633]",
+ "Entity_[4073077204152521]",
+ "Entity_[4073068614217929]",
+ "Entity_[4073072909185225]",
+ "Entity_[4073081499119817]",
+ "Entity_[4073085794087113]",
+ "Entity_[4073102973956297]",
+ "Entity_[4073094384021705]",
+ "Entity_[4073098678989001]"
+ ]
+ },
+ "Component_[7096718211285552582]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 7096718211285552582
+ },
+ "Component_[8091190759736241533]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 8091190759736241533
+ }
+ }
+ },
+ "Entity_[659767798538]": {
+ "Id": "Entity_[659767798538]",
+ "Name": "VegArea",
+ "Components": {
+ "Component_[10457867987348570858]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10457867987348570858
+ },
+ "Component_[1229363445910756890]": {
+ "$type": "{DD96FD51-A86B-48BC-A6AB-89183B538269} EditorSpawnerComponent",
+ "Id": 1229363445910756890,
+ "PreviewEntity": "Entity_[659767798538]"
+ },
+ "Component_[12481711086985445589]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12481711086985445589
+ },
+ "Component_[14421356574908560819]": {
+ "$type": "EditorAxisAlignedBoxShapeComponent",
+ "Id": 14421356574908560819,
+ "Visible": false,
+ "DisplayFilled": false,
+ "AxisAlignedBoxShape": {
+ "Configuration": {
+ "IsFilled": false,
+ "Dimensions": [
+ 200.0,
+ 200.0,
+ 200.0
+ ]
+ }
+ }
+ },
+ "Component_[14627293932927606859]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 14627293932927606859,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 25.139535903930664,
+ 43.94798278808594,
+ 0.0
+ ]
+ }
+ },
+ "Component_[16742116787858765489]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16742116787858765489
+ },
+ "Component_[17369607211365211528]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17369607211365211528,
+ "Child Entity Order": [
+ "Instance_[919926567113]/ContainerEntity",
+ "Instance_[1031595716809]/ContainerEntity",
+ "Instance_[1160444735689]/ContainerEntity",
+ "Instance_[1306473623753]/ContainerEntity",
+ "Instance_[1469682381001]/ContainerEntity",
+ "Instance_[1650071007433]/ContainerEntity",
+ "Instance_[1847639503049]/ContainerEntity",
+ "Instance_[2062387867849]/ContainerEntity",
+ "Instance_[2294316101833]/ContainerEntity",
+ "Instance_[2543424205001]/ContainerEntity",
+ "Instance_[2809712177353]/ContainerEntity",
+ "Instance_[3093180018889]/ContainerEntity",
+ "Instance_[3398122696905]/ContainerEntity"
+ ]
+ },
+ "Component_[17539394596964090620]": {
+ "$type": "EditorDescriptorListComponent",
+ "Id": 17539394596964090620,
+ "Configuration": {
+ "Descriptors": [
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{60CF6C60-8620-5173-814C-ED8B0C395BA7}",
+ "subId": 1611714993
+ },
+ "assetHint": "prefabs/testdata/graphics/cubealuminumpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{B030470B-92ED-5673-B108-5BD3C31A3795}",
+ "subId": 2910987375
+ },
+ "assetHint": "prefabs/testdata/graphics/cubebrasspolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{D4AC76BB-BA32-5787-A862-3C6296503126}",
+ "subId": 1351414441
+ },
+ "assetHint": "prefabs/testdata/graphics/cubechromepolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{6E0DF0BD-2B50-5353-A063-88AAEEBED799}",
+ "subId": 1382904365
+ },
+ "assetHint": "prefabs/testdata/graphics/cubecobaltpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{CB9E61C4-1122-56D8-8906-2FF8FC4D1876}",
+ "subId": 3884585917
+ },
+ "assetHint": "prefabs/testdata/graphics/cubecopperpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{9105AA91-FE70-56C2-BA83-E08F268C333F}",
+ "subId": 2449326585
+ },
+ "assetHint": "prefabs/testdata/graphics/cubegoldpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{7DB86E6D-05C1-5B3C-88B4-DC9039005E1F}",
+ "subId": 932993536
+ },
+ "assetHint": "prefabs/testdata/graphics/cubeironpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{D8EEB566-07A9-5F39-9B89-66492858F178}",
+ "subId": 2937511027
+ },
+ "assetHint": "prefabs/testdata/graphics/cubemercurypbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{7988D594-BA33-5843-886B-9E23FD9B1B3F}",
+ "subId": 3637668335
+ },
+ "assetHint": "prefabs/testdata/graphics/cubenickelpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{CDDFE051-9910-5CD5-BD62-6FC729910CE5}",
+ "subId": 3334536131
+ },
+ "assetHint": "prefabs/testdata/graphics/cubepalladiumpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{F336F1A7-7FDF-5972-A48E-58DC83D152A4}",
+ "subId": 610633662
+ },
+ "assetHint": "prefabs/testdata/graphics/cubeplatinumpolishedpbr.spawnable"
+ }
+ },
+ "Advanced": true
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{32B00E51-BC05-5F03-A9AA-2D7AFE680EAC}",
+ "subId": 3534297619
+ },
+ "assetHint": "prefabs/testdata/graphics/cubesilverpolishedpbr.spawnable"
+ }
+ }
+ },
+ {
+ "SpawnerType": "{74BEEDB5-81CF-409F-B375-0D93D81EF2E3}",
+ "InstanceSpawner": {
+ "$type": "PrefabInstanceSpawner",
+ "SpawnableAsset": {
+ "assetId": {
+ "guid": "{BBAB8640-03D2-5138-B52F-D031F29AF8C9}",
+ "subId": 923463205
+ },
+ "assetHint": "prefabs/testdata/graphics/cubetitaniumpolishedpbr.spawnable"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Component_[2434532182352640072]": {
+ "$type": "EditorLockComponent",
+ "Id": 2434532182352640072
+ },
+ "Component_[6884260241620821202]": {
+ "$type": "SelectionComponent",
+ "Id": 6884260241620821202
+ },
+ "Component_[7575363224499024733]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 7575363224499024733
+ },
+ "Component_[9440481613501976688]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9440481613501976688
+ },
+ "Component_[9636552512161785427]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9636552512161785427
+ }
+ }
+ }
+ },
+ "Instances": {
+ "Instance_[1031595716809]": {
+ "Source": "Prefabs/TestData/Graphics/CubeAluminumPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1006636009791072742]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1006636009791072742]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1006636009791072742]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[1160444735689]": {
+ "Source": "Prefabs/TestData/Graphics/CubeBrassPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17333992135029064645]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17333992135029064645]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17333992135029064645]/Transform Data/Translate/1",
+ "value": 1.4970321655273438
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17333992135029064645]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[1306473623753]": {
+ "Source": "Prefabs/TestData/Graphics/CubeChromePolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[15205683346512266293]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[15205683346512266293]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[15205683346512266293]/Transform Data/Translate/1",
+ "value": 3.06375503540039
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[15205683346512266293]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[1469682381001]": {
+ "Source": "Prefabs/TestData/Graphics/CubeCobaltPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12811832964126776693]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12811832964126776693]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12811832964126776693]/Transform Data/Translate/1",
+ "value": 4.512233734130859
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12811832964126776693]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[1650071007433]": {
+ "Source": "Prefabs/TestData/Graphics/CubeCopperPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5749675910289562089]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5749675910289562089]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5749675910289562089]/Transform Data/Translate/1",
+ "value": 5.966960906982422
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[5749675910289562089]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[1847639503049]": {
+ "Source": "Prefabs/TestData/Graphics/CubeGoldPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[11570676153379582500]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[11570676153379582500]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[11570676153379582500]/Transform Data/Translate/1",
+ "value": 7.424510955810547
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[11570676153379582500]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[2062387867849]": {
+ "Source": "Prefabs/TestData/Graphics/CubeIronPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17506200912680653288]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17506200912680653288]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17506200912680653288]/Transform Data/Translate/1",
+ "value": 8.888202667236328
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[17506200912680653288]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[2294316101833]": {
+ "Source": "Prefabs/TestData/Graphics/CubeNickelPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12821987693261496174]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12821987693261496174]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12821987693261496174]/Transform Data/Translate/1",
+ "value": 10.4295654296875
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[12821987693261496174]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[2543424205001]": {
+ "Source": "Prefabs/TestData/Graphics/CubePalladiumPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[16012620721047170064]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[16012620721047170064]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[16012620721047170064]/Transform Data/Translate/1",
+ "value": 12.071407318115234
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[16012620721047170064]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[2809712177353]": {
+ "Source": "Prefabs/TestData/Graphics/CubePlatinumPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1499102502234135899]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1499102502234135899]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1499102502234135899]/Transform Data/Translate/1",
+ "value": 13.582500457763672
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[1499102502234135899]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[3093180018889]": {
+ "Source": "Prefabs/TestData/Graphics/CubeSilverPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[18049054501916401618]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[18049054501916401618]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[18049054501916401618]/Transform Data/Translate/1",
+ "value": 15.026111602783203
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[18049054501916401618]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[3398122696905]": {
+ "Source": "Prefabs/TestData/Graphics/CubeTitaniumPolishedPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[14924371629431224666]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[14924371629431224666]/Transform Data/Translate/0",
+ "value": -264.5232849121094
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[14924371629431224666]/Transform Data/Translate/1",
+ "value": 16.513294219970703
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[14924371629431224666]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ },
+ "Instance_[919926567113]": {
+ "Source": "Prefabs/TestData/Graphics/CubeMercuryPBR.prefab",
+ "Patches": [
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[2268958959705742396]/Parent Entity",
+ "value": "../Entity_[659767798538]"
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[2268958959705742396]/Transform Data/Translate/0",
+ "value": -270.14752197265625
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[2268958959705742396]/Transform Data/Translate/1",
+ "value": 10.24942398071289
+ },
+ {
+ "op": "replace",
+ "path": "/ContainerEntity/Components/Component_[2268958959705742396]/Transform Data/Translate/2",
+ "value": 1.0
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Performance/10kVegInstancesTest/tags.txt b/AutomatedTesting/Levels/Performance/10kVegInstancesTest/tags.txt
new file mode 100644
index 0000000000..0d6c1880e7
--- /dev/null
+++ b/AutomatedTesting/Levels/Performance/10kVegInstancesTest/tags.txt
@@ -0,0 +1,12 @@
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
+0,0,0,0,0,0
diff --git a/AutomatedTesting/Objects/sphere.fbx b/AutomatedTesting/Objects/sphere.fbx
new file mode 100644
index 0000000000..5c8f550c8c
--- /dev/null
+++ b/AutomatedTesting/Objects/sphere.fbx
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a476e99b55cf2a76fef6775c5a57dad29f8ffcb942c625bab04c89051a72a560
+size 62626
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/AtomCubeWall.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/AtomCubeWall.prefab
new file mode 100644
index 0000000000..eda62c6f52
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/AtomCubeWall.prefab
@@ -0,0 +1,102345 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "AtomCubeWall",
+ "Components": {
+ "Component_[1378762968271397696]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 1378762968271397696
+ },
+ "Component_[15861901244881316506]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 15861901244881316506
+ },
+ "Component_[1667542861598358689]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 1667542861598358689
+ },
+ "Component_[2970248835877935836]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 2970248835877935836
+ },
+ "Component_[3475481110579263685]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3475481110579263685
+ },
+ "Component_[4960733274366718926]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 4960733274366718926
+ },
+ "Component_[5052757994340238524]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5052757994340238524,
+ "Parent Entity": ""
+ },
+ "Component_[5847627832229774671]": {
+ "$type": "SelectionComponent",
+ "Id": 5847627832229774671
+ },
+ "Component_[686142448804056059]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 686142448804056059
+ },
+ "Component_[8743584510936460932]": {
+ "$type": "EditorLockComponent",
+ "Id": 8743584510936460932
+ },
+ "Component_[9497718940671573904]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 9497718940671573904,
+ "Child Entity Order": [
+ "Entity_[728313751508]",
+ "Entity_[3017531320276]",
+ "Entity_[2149947926484]",
+ "Entity_[3236574652372]",
+ "Entity_[2618099361748]",
+ "Entity_[1922314659796]",
+ "Entity_[2493545310164]",
+ "Entity_[887227541460]",
+ "Entity_[1458458191828]",
+ "Entity_[1638846818260]",
+ "Entity_[479205648340]",
+ "Entity_[2850027595732]",
+ "Entity_[947357083604]",
+ "Entity_[3640301578196]",
+ "Entity_[3094840731604]",
+ "Entity_[483500615636]",
+ "Entity_[4327496345556]",
+ "Entity_[2880092366804]",
+ "Entity_[487795582932]",
+ "Entity_[3348243802068]",
+ "Entity_[3983898961876]",
+ "Entity_[3429848180692]",
+ "Entity_[1497112897492]",
+ "Entity_[2295976814548]",
+ "Entity_[504975452116]",
+ "Entity_[2351811389396]",
+ "Entity_[3507157592020]",
+ "Entity_[646709372884]",
+ "Entity_[577989896148]",
+ "Entity_[2545084917716]",
+ "Entity_[2609509427156]",
+ "Entity_[3919474452436]",
+ "Entity_[3305294129108]",
+ "Entity_[3030416222164]",
+ "Entity_[1973854267348]",
+ "Entity_[4275956738004]",
+ "Entity_[2892977268692]",
+ "Entity_[2390466095060]",
+ "Entity_[3790625433556]",
+ "Entity_[3185035044820]",
+ "Entity_[492090550228]",
+ "Entity_[2781308118996]",
+ "Entity_[1230824925140]",
+ "Entity_[3399783409620]",
+ "Entity_[2098408318932]",
+ "Entity_[1862185117652]",
+ "Entity_[3090545764308]",
+ "Entity_[1600192112596]",
+ "Entity_[762673489876]",
+ "Entity_[2029688842196]",
+ "Entity_[917292312532]",
+ "Entity_[706838915028]",
+ "Entity_[745493620692]",
+ "Entity_[2562264786900]",
+ "Entity_[2141357991892]",
+ "Entity_[556515059668]",
+ "Entity_[2575149688788]",
+ "Entity_[535040223188]",
+ "Entity_[530745255892]",
+ "Entity_[496385517524]",
+ "Entity_[3043301124052]",
+ "Entity_[2635279230932]",
+ "Entity_[2777013151700]",
+ "Entity_[3425553213396]",
+ "Entity_[2716883609556]",
+ "Entity_[1909429757908]",
+ "Entity_[3524337461204]",
+ "Entity_[3116315568084]",
+ "Entity_[4495000070100]",
+ "Entity_[865752704980]",
+ "Entity_[831392966612]",
+ "Entity_[2373286225876]",
+ "Entity_[3876524779476]",
+ "Entity_[500680484820]",
+ "Entity_[509270419412]",
+ "Entity_[513565386708]",
+ "Entity_[2953106810836]",
+ "Entity_[4125632882644]",
+ "Entity_[3756265695188]",
+ "Entity_[2025393874900]",
+ "Entity_[3159265241044]",
+ "Entity_[2003919038420]",
+ "Entity_[1385443747796]",
+ "Entity_[719723816916]",
+ "Entity_[2476365440980]",
+ "Entity_[3296704194516]",
+ "Entity_[4314611443668]",
+ "Entity_[1329609172948]",
+ "Entity_[517860354004]",
+ "Entity_[4245891966932]",
+ "Entity_[1540062570452]",
+ "Entity_[522155321300]",
+ "Entity_[1814940477396]",
+ "Entity_[1093385971668]",
+ "Entity_[4215827195860]",
+ "Entity_[3966719092692]",
+ "Entity_[771263424468]",
+ "Entity_[526450288596]",
+ "Entity_[681069111252]",
+ "Entity_[1205055121364]",
+ "Entity_[2368991258580]",
+ "Entity_[3258049488852]",
+ "Entity_[4104158046164]",
+ "Entity_[912997345236]",
+ "Entity_[1282364532692]",
+ "Entity_[1617371981780]",
+ "Entity_[4357561116628]",
+ "Entity_[629529503700]",
+ "Entity_[2845732628436]",
+ "Entity_[2557969819604]",
+ "Entity_[2210077468628]",
+ "Entity_[1411213551572]",
+ "Entity_[1634551850964]",
+ "Entity_[552220092372]",
+ "Entity_[1905134790612]",
+ "Entity_[1552947472340]",
+ "Entity_[2317451651028]",
+ "Entity_[1278069565396]",
+ "Entity_[3142085371860]",
+ "Entity_[1123450742740]",
+ "Entity_[539335190484]",
+ "Entity_[3416963278804]",
+ "Entity_[1136335644628]",
+ "Entity_[1677501523924]",
+ "Entity_[3180740077524]",
+ "Entity_[2630984263636]",
+ "Entity_[638119438292]",
+ "Entity_[754083555284]",
+ "Entity_[1771990804436]",
+ "Entity_[981716821972]",
+ "Entity_[844277868500]",
+ "Entity_[543630157780]",
+ "Entity_[1733336098772]",
+ "Entity_[3283819292628]",
+ "Entity_[1007486625748]",
+ "Entity_[4013963732948]",
+ "Entity_[1673206556628]",
+ "Entity_[2940221908948]",
+ "Entity_[595169765332]",
+ "Entity_[3897999615956]",
+ "Entity_[1325314205652]",
+ "Entity_[547925125076]",
+ "Entity_[2424825833428]",
+ "Entity_[2347516422100]",
+ "Entity_[612349634516]",
+ "Entity_[1918019692500]",
+ "Entity_[1754810935252]",
+ "Entity_[4301726541780]",
+ "Entity_[3584467003348]",
+ "Entity_[560810026964]",
+ "Entity_[2832847726548]",
+ "Entity_[2016803940308]",
+ "Entity_[3915179485140]",
+ "Entity_[4585194383316]",
+ "Entity_[569399961556]",
+ "Entity_[3520042493908]",
+ "Entity_[3859344910292]",
+ "Entity_[2463480539092]",
+ "Entity_[4039733536724]",
+ "Entity_[779853359060]",
+ "Entity_[2983171581908]",
+ "Entity_[1832120346580]",
+ "Entity_[2334631520212]",
+ "Entity_[603759699924]",
+ "Entity_[1342494074836]",
+ "Entity_[2673933936596]",
+ "Entity_[565104994260]",
+ "Entity_[3279524325332]",
+ "Entity_[573694928852]",
+ "Entity_[3601646872532]",
+ "Entity_[582284863444]",
+ "Entity_[4443460462548]",
+ "Entity_[1879364986836]",
+ "Entity_[1750515967956]",
+ "Entity_[4082683209684]",
+ "Entity_[620939569108]",
+ "Entity_[973126887380]",
+ "Entity_[1179285317588]",
+ "Entity_[1406918584276]",
+ "Entity_[2330336552916]",
+ "Entity_[2253027141588]",
+ "Entity_[1802055575508]",
+ "Entity_[3992488896468]",
+ "Entity_[1359673944020]",
+ "Entity_[1424098453460]",
+ "Entity_[1720451196884]",
+ "Entity_[3545812297684]",
+ "Entity_[4482115168212]",
+ "Entity_[4589489350612]",
+ "Entity_[3906589550548]",
+ "Entity_[4224417130452]",
+ "Entity_[3412668311508]",
+ "Entity_[3812100270036]",
+ "Entity_[3447028049876]",
+ "Entity_[2068343547860]",
+ "Entity_[1887954921428]",
+ "Entity_[4546539677652]",
+ "Entity_[4147107719124]",
+ "Entity_[1196465186772]",
+ "Entity_[2987466549204]",
+ "Entity_[2695408773076]",
+ "Entity_[2691113805780]",
+ "Entity_[4202942293972]",
+ "Entity_[2171422762964]",
+ "Entity_[1501407864788]",
+ "Entity_[4563719546836]",
+ "Entity_[4417690658772]",
+ "Entity_[3683251251156]",
+ "Entity_[2046868711380]",
+ "Entity_[4529359808468]",
+ "Entity_[3837870073812]",
+ "Entity_[3163560208340]",
+ "Entity_[2785603086292]",
+ "Entity_[3073365895124]",
+ "Entity_[2523610081236]",
+ "Entity_[4159992621012]",
+ "Entity_[1978149234644]",
+ "Entity_[4035438569428]",
+ "Entity_[1759105902548]",
+ "Entity_[2145652959188]",
+ "Entity_[934472181716]",
+ "Entity_[3975309027284]",
+ "Entity_[3721905956820]",
+ "Entity_[2918747072468]",
+ "Entity_[3666071381972]",
+ "Entity_[3893704648660]",
+ "Entity_[2313156683732]",
+ "Entity_[2510725179348]",
+ "Entity_[1059026233300]",
+ "Entity_[2403350996948]",
+ "Entity_[1286659499988]",
+ "Entity_[3356833736660]",
+ "Entity_[2497840277460]",
+ "Entity_[2648164132820]",
+ "Entity_[3605941839828]",
+ "Entity_[741198653396]",
+ "Entity_[2579444656084]",
+ "Entity_[1840710281172]",
+ "Entity_[1960969365460]",
+ "Entity_[2764128249812]",
+ "Entity_[4469230266324]",
+ "Entity_[4022553667540]",
+ "Entity_[4336086280148]",
+ "Entity_[1471343093716]",
+ "Entity_[2837142693844]",
+ "Entity_[2703998707668]",
+ "Entity_[4409100724180]",
+ "Entity_[4237302032340]",
+ "Entity_[3039006156756]",
+ "Entity_[4430575560660]",
+ "Entity_[3335358900180]",
+ "Entity_[2923042039764]",
+ "Entity_[4593784317908]",
+ "Entity_[1213645055956]",
+ "Entity_[4344676214740]",
+ "Entity_[827097999316]",
+ "Entity_[951652050900]",
+ "Entity_[4413395691476]",
+ "Entity_[4207237261268]",
+ "Entity_[4056913405908]",
+ "Entity_[2721178576852]",
+ "Entity_[2081228449748]",
+ "Entity_[3794920400852]",
+ "Entity_[4194352359380]",
+ "Entity_[2965991712724]",
+ "Entity_[1415508518868]",
+ "Entity_[4031143602132]",
+ "Entity_[3197919946708]",
+ "Entity_[3099135698900]",
+ "Entity_[1570127341524]",
+ "Entity_[4516474906580]",
+ "Entity_[3438438115284]",
+ "Entity_[4172877522900]",
+ "Entity_[2433415768020]",
+ "Entity_[4473525233620]",
+ "Entity_[3760560662484]",
+ "Entity_[4052618438612]",
+ "Entity_[1643141785556]",
+ "Entity_[1368263878612]",
+ "Entity_[3240869619668]",
+ "Entity_[4572309481428]",
+ "Entity_[2798487988180]",
+ "Entity_[1101975906260]",
+ "Entity_[1518587733972]",
+ "Entity_[3962424125396]",
+ "Entity_[4267366803412]",
+ "Entity_[4095568111572]",
+ "Entity_[1557242439636]",
+ "Entity_[3936654321620]",
+ "Entity_[2665344002004]",
+ "Entity_[4044028504020]",
+ "Entity_[4447755429844]",
+ "Entity_[1243709827028]",
+ "Entity_[977421854676]",
+ "Entity_[2901567203284]",
+ "Entity_[642414405588]",
+ "Entity_[4323201378260]",
+ "Entity_[1767695837140]",
+ "Entity_[3691841185748]",
+ "Entity_[1492817930196]",
+ "Entity_[3674661316564]",
+ "Entity_[3515747526612]",
+ "Entity_[2871502432212]",
+ "Entity_[2506430212052]",
+ "Entity_[3777740531668]",
+ "Entity_[2386171127764]",
+ "Entity_[1265184663508]",
+ "Entity_[586579830740]",
+ "Entity_[3120610535380]",
+ "Entity_[2420530866132]",
+ "Entity_[2725473544148]",
+ "Entity_[1252299761620]",
+ "Entity_[2321746618324]",
+ "Entity_[3820690204628]",
+ "Entity_[3979603994580]",
+ "Entity_[3318179030996]",
+ "Entity_[1505702832084]",
+ "Entity_[1428393420756]",
+ "Entity_[3678956283860]",
+ "Entity_[1338199107540]",
+ "Entity_[895817476052]",
+ "Entity_[1660321654740]",
+ "Entity_[4525064841172]",
+ "Entity_[698248980436]",
+ "Entity_[4134222817236]",
+ "Entity_[2265912043476]",
+ "Entity_[1312429303764]",
+ "Entity_[4254481901524]",
+ "Entity_[4499295037396]",
+ "Entity_[3000351451092]",
+ "Entity_[3988193929172]",
+ "Entity_[655299307476]",
+ "Entity_[1346789042132]",
+ "Entity_[3769150597076]",
+ "Entity_[2480660408276]",
+ "Entity_[1866480084948]",
+ "Entity_[2214372435924]",
+ "Entity_[1046141331412]",
+ "Entity_[2261617076180]",
+ "Entity_[2042573744084]",
+ "Entity_[1183580284884]",
+ "Entity_[861457737684]",
+ "Entity_[1033256429524]",
+ "Entity_[711133882324]",
+ "Entity_[3928064387028]",
+ "Entity_[1316724271060]",
+ "Entity_[1003191658452]",
+ "Entity_[2218667403220]",
+ "Entity_[2991761516500]",
+ "Entity_[4452050397140]",
+ "Entity_[2291681847252]",
+ "Entity_[2751243347924]",
+ "Entity_[1784875706324]",
+ "Entity_[3176445110228]",
+ "Entity_[2815667857364]",
+ "Entity_[4533654775764]",
+ "Entity_[3610236807124]",
+ "Entity_[3880819746772]",
+ "Entity_[3124905502676]",
+ "Entity_[3494272690132]",
+ "Entity_[835687933908]",
+ "Entity_[1363968911316]",
+ "Entity_[3378308573140]",
+ "Entity_[1703271327700]",
+ "Entity_[3636006610900]",
+ "Entity_[2180012697556]",
+ "Entity_[1389738715092]",
+ "Entity_[4580899416020]",
+ "Entity_[3322473998292]",
+ "Entity_[878637606868]",
+ "Entity_[3550107264980]",
+ "Entity_[1166400415700]",
+ "Entity_[4370446018516]",
+ "Entity_[2240142239700]",
+ "Entity_[2399056029652]",
+ "Entity_[2729768511444]",
+ "Entity_[4310316476372]",
+ "Entity_[3189330012116]",
+ "Entity_[3047596091348]",
+ "Entity_[3867934844884]",
+ "Entity_[2867207464916]",
+ "Entity_[3575877068756]",
+ "Entity_[2446300669908]",
+ "Entity_[2536494983124]",
+ "Entity_[3262344456148]",
+ "Entity_[4486410135508]",
+ "Entity_[2519315113940]",
+ "Entity_[1724746164180]",
+ "Entity_[4048323471316]",
+ "Entity_[3051891058644]",
+ "Entity_[1419803486164]",
+ "Entity_[797033228244]",
+ "Entity_[1041846364116]",
+ "Entity_[4460640331732]",
+ "Entity_[3833575106516]",
+ "Entity_[3464207919060]",
+ "Entity_[1651731720148]",
+ "Entity_[1162105448404]",
+ "Entity_[663889242068]",
+ "Entity_[2755538315220]",
+ "Entity_[4507884971988]",
+ "Entity_[1522882701268]",
+ "Entity_[4151402686420]",
+ "Entity_[1144925579220]",
+ "Entity_[3850754975700]",
+ "Entity_[1467048126420]",
+ "Entity_[3945244256212]",
+ "Entity_[3958129158100]",
+ "Entity_[4061208373204]",
+ "Entity_[4555129612244]",
+ "Entity_[1299544401876]",
+ "Entity_[2897272235988]",
+ "Entity_[882932574164]",
+ "Entity_[4396215822292]",
+ "Entity_[1106270873556]",
+ "Entity_[2188602632148]",
+ "Entity_[2807077922772]",
+ "Entity_[998896691156]",
+ "Entity_[4331791312852]",
+ "Entity_[2197192566740]",
+ "Entity_[2738358446036]",
+ "Entity_[986011789268]",
+ "Entity_[4138517784532]",
+ "Entity_[1239414859732]",
+ "Entity_[1273774598100]",
+ "Entity_[2338926487508]",
+ "Entity_[2450595637204]",
+ "Entity_[784148326356]",
+ "Entity_[3704726087636]",
+ "Entity_[689659045844]",
+ "Entity_[3571582101460]",
+ "Entity_[1900839823316]",
+ "Entity_[1114860808148]",
+ "Entity_[4426280593364]",
+ "Entity_[4280251705300]",
+ "Entity_[4108453013460]",
+ "Entity_[1793465640916]",
+ "Entity_[4404805756884]",
+ "Entity_[2394761062356]",
+ "Entity_[2175717730260]",
+ "Entity_[3532927395796]",
+ "Entity_[3459912951764]",
+ "Entity_[1217940023252]",
+ "Entity_[1097680938964]",
+ "Entity_[3751970727892]",
+ "Entity_[1028961462228]",
+ "Entity_[3747675760596]",
+ "Entity_[4220122163156]",
+ "Entity_[3717610989524]",
+ "Entity_[3288114259924]",
+ "Entity_[1595897145300]",
+ "Entity_[1149220546516]",
+ "Entity_[599464732628]",
+ "Entity_[2583739623380]",
+ "Entity_[1436983355348]",
+ "Entity_[1913724725204]",
+ "Entity_[2935926941652]",
+ "Entity_[1690386425812]",
+ "Entity_[3206509881300]",
+ "Entity_[2137063024596]",
+ "Entity_[1054731266004]",
+ "Entity_[3842165041108]",
+ "Entity_[4001078831060]",
+ "Entity_[4348971182036]",
+ "Entity_[4293136607188]",
+ "Entity_[1222234990548]",
+ "Entity_[968831920084]",
+ "Entity_[4391920854996]",
+ "Entity_[2592329557972]",
+ "Entity_[870047672276]",
+ "Entity_[1711861262292]",
+ "Entity_[1608782047188]",
+ "Entity_[4306021509076]",
+ "Entity_[1999624071124]",
+ "Entity_[1269479630804]",
+ "Entity_[1140630611924]",
+ "Entity_[2227257337812]",
+ "Entity_[3339653867476]",
+ "Entity_[2854322563028]",
+ "Entity_[1024666494932]",
+ "Entity_[2686818838484]",
+ "Entity_[2300271781844]",
+ "Entity_[4361856083924]",
+ "Entity_[1527177668564]",
+ "Entity_[1372558845908]",
+ "Entity_[1514292766676]",
+ "Entity_[1943789496276]",
+ "Entity_[4340381247444]",
+ "Entity_[1737631066068]",
+ "Entity_[3996783863764]",
+ "Entity_[1574422308820]",
+ "Entity_[2059753613268]",
+ "Entity_[4009668765652]",
+ "Entity_[3713316022228]",
+ "Entity_[3846460008404]",
+ "Entity_[2553674852308]",
+ "Entity_[1321019238356]",
+ "Entity_[3167855175636]",
+ "Entity_[2961696745428]",
+ "Entity_[788443293652]",
+ "Entity_[4250186934228]",
+ "Entity_[4074093275092]",
+ "Entity_[3537222363092]",
+ "Entity_[4318906410964]",
+ "Entity_[1664616622036]",
+ "Entity_[4297431574484]",
+ "Entity_[4065503340500]",
+ "Entity_[994601723860]",
+ "Entity_[4142812751828]",
+ "Entity_[1333904140244]",
+ "Entity_[4117042948052]",
+ "Entity_[2996056483796]",
+ "Entity_[4263071836116]",
+ "Entity_[3940949288916]",
+ "Entity_[1351084009428]",
+ "Entity_[2094113351636]",
+ "Entity_[1797760608212]",
+ "Entity_[4241596999636]",
+ "Entity_[857162770388]",
+ "Entity_[3855049942996]",
+ "Entity_[2742653413332]",
+ "Entity_[2416235898836]",
+ "Entity_[3472797853652]",
+ "Entity_[3644596545492]",
+ "Entity_[2759833282516]",
+ "Entity_[4185762424788]",
+ "Entity_[3077660862420]",
+ "Entity_[2154242893780]",
+ "Entity_[2794193020884]",
+ "Entity_[1819235444692]",
+ "Entity_[3004646418388]",
+ "Entity_[1810645510100]",
+ "Entity_[4078388242388]",
+ "Entity_[4503590004692]",
+ "Entity_[2270207010772]",
+ "Entity_[3902294583252]",
+ "Entity_[3270934390740]",
+ "Entity_[1780580739028]",
+ "Entity_[3567287134164]",
+ "Entity_[3511452559316]",
+ "Entity_[4190057392084]",
+ "Entity_[1355378976724]",
+ "Entity_[3249459554260]",
+ "Entity_[3137790404564]",
+ "Entity_[4129927849940]",
+ "Entity_[2235847272404]",
+ "Entity_[4086978176980]",
+ "Entity_[3657481447380]",
+ "Entity_[2841437661140]",
+ "Entity_[2862912497620]",
+ "Entity_[4005373798356]",
+ "Entity_[3786330466260]",
+ "Entity_[814213097428]",
+ "Entity_[1308134336468]",
+ "Entity_[1707566294996]",
+ "Entity_[2356106356692]",
+ "Entity_[3889409681364]",
+ "Entity_[1153515513812]",
+ "Entity_[4542244710356]",
+ "Entity_[3614531774420]",
+ "Entity_[4434870527956]",
+ "Entity_[3202214914004]",
+ "Entity_[616644601812]",
+ "Entity_[2978876614612]",
+ "Entity_[3421258246100]",
+ "Entity_[4177172490196]",
+ "Entity_[2119883155412]",
+ "Entity_[1986739169236]",
+ "Entity_[2661049034708]",
+ "Entity_[3648891512788]",
+ "Entity_[4026848634836]",
+ "Entity_[2283091912660]",
+ "Entity_[1020371527636]",
+ "Entity_[990306756564]",
+ "Entity_[3498567657428]",
+ "Entity_[964536952788]",
+ "Entity_[2605214459860]",
+ "Entity_[2802782955476]",
+ "Entity_[2162832828372]",
+ "Entity_[2639574198228]",
+ "Entity_[4353266149332]",
+ "Entity_[4550834644948]",
+ "Entity_[2888682301396]",
+ "Entity_[3726200924116]",
+ "Entity_[2326041585620]",
+ "Entity_[1303839369172]",
+ "Entity_[3227984717780]",
+ "Entity_[1462753159124]",
+ "Entity_[2278796945364]",
+ "Entity_[1698976360404]",
+ "Entity_[4464935299028]",
+ "Entity_[2669638969300]",
+ "Entity_[801328195540]",
+ "Entity_[1565832374228]",
+ "Entity_[2377581193172]",
+ "Entity_[2970286680020]",
+ "Entity_[4387625887700]",
+ "Entity_[1763400869844]",
+ "Entity_[1789170673620]",
+ "Entity_[3021826287572]",
+ "Entity_[1982444201940]",
+ "Entity_[1625961916372]",
+ "Entity_[2613804394452]",
+ "Entity_[4211532228564]",
+ "Entity_[3807805302740]",
+ "Entity_[3502862624724]",
+ "Entity_[775558391764]",
+ "Entity_[3326768965588]",
+ "Entity_[2532200015828]",
+ "Entity_[3154970273748]",
+ "Entity_[3872229812180]",
+ "Entity_[3382603540436]",
+ "Entity_[1991034136532]",
+ "Entity_[1119155775444]",
+ "Entity_[2699703740372]",
+ "Entity_[2515020146644]",
+ "Entity_[1952379430868]",
+ "Entity_[1011781593044]",
+ "Entity_[4421985626068]",
+ "Entity_[1402623616980]",
+ "Entity_[4568014514132]",
+ "Entity_[4576604448724]",
+ "Entity_[3253754521556]",
+ "Entity_[1630256883668]",
+ "Entity_[2222962370516]",
+ "Entity_[3219394783188]",
+ "Entity_[3232279685076]",
+ "Entity_[3107725633492]",
+ "Entity_[633824470996]",
+ "Entity_[1896544856020]",
+ "Entity_[724018784212]",
+ "Entity_[1531472635860]",
+ "Entity_[2588034590676]",
+ "Entity_[3408373344212]",
+ "Entity_[852867803092]",
+ "Entity_[904407410644]",
+ "Entity_[2489250342868]",
+ "Entity_[3554402232276]",
+ "Entity_[921587279828]",
+ "Entity_[1827825379284]",
+ "Entity_[1295249434580]",
+ "Entity_[2540789950420]",
+ "Entity_[4271661770708]",
+ "Entity_[3442733082580]",
+ "Entity_[2527905048532]",
+ "Entity_[1544357537748]",
+ "Entity_[608054667220]",
+ "Entity_[2734063478740]",
+ "Entity_[4477820200916]",
+ "Entity_[693954013140]",
+ "Entity_[2931631974356]",
+ "Entity_[2111293220820]",
+ "Entity_[736903686100]",
+ "Entity_[1170695382996]",
+ "Entity_[3597351905236]",
+ "Entity_[2033983809492]",
+ "Entity_[839982901204]",
+ "Entity_[3562992166868]",
+ "Entity_[2914452105172]",
+ "Entity_[766968457172]",
+ "Entity_[848572835796]",
+ "Entity_[2132768057300]",
+ "Entity_[3395488442324]",
+ "Entity_[1883659954132]",
+ "Entity_[1484227995604]",
+ "Entity_[1849300215764]",
+ "Entity_[3343948834772]",
+ "Entity_[1587307210708]",
+ "Entity_[2467775506388]",
+ "Entity_[3971014059988]",
+ "Entity_[874342639572]",
+ "Entity_[1187875252180]",
+ "Entity_[1995329103828]",
+ "Entity_[3485682755540]",
+ "Entity_[2910157137876]",
+ "Entity_[4228712097748]",
+ "Entity_[3064775960532]",
+ "Entity_[2102703286228]",
+ "Entity_[3150675306452]",
+ "Entity_[2051163678676]",
+ "Entity_[2643869165524]",
+ "Entity_[1591602178004]",
+ "Entity_[2244437206996]",
+ "Entity_[2746948380628]",
+ "Entity_[1256594728916]",
+ "Entity_[1248004794324]",
+ "Entity_[3215099815892]",
+ "Entity_[2626689296340]",
+ "Entity_[672479176660]",
+ "Entity_[891522508756]",
+ "Entity_[1965264332756]",
+ "Entity_[1260889696212]",
+ "Entity_[955947018196]",
+ "Entity_[1445573289940]",
+ "Entity_[3653186480084]",
+ "Entity_[2459185571796]",
+ "Entity_[3588761970644]",
+ "Entity_[2304566749140]",
+ "Entity_[2948811843540]",
+ "Entity_[1080501069780]",
+ "Entity_[3829280139220]",
+ "Entity_[1127745710036]",
+ "Entity_[685364078548]",
+ "Entity_[3060480993236]",
+ "Entity_[2549379885012]",
+ "Entity_[3700431120340]",
+ "Entity_[2201487534036]",
+ "Entity_[3365423671252]",
+ "Entity_[925882247124]",
+ "Entity_[3361128703956]",
+ "Entity_[2308861716436]",
+ "Entity_[3086250797012]",
+ "Entity_[1686091458516]",
+ "Entity_[3623121709012]",
+ "Entity_[1776285771732]",
+ "Entity_[1376853813204]",
+ "Entity_[960241985492]",
+ "Entity_[3309589096404]",
+ "Entity_[1449868257236]",
+ "Entity_[3013236352980]",
+ "Entity_[2600919492564]",
+ "Entity_[3172150142932]",
+ "Entity_[2205782501332]",
+ "Entity_[4258776868820]",
+ "Entity_[2927337007060]",
+ "Entity_[1969559300052]",
+ "Entity_[1488522962900]",
+ "Entity_[809918130132]",
+ "Entity_[3558697199572]",
+ "Entity_[4383330920404]",
+ "Entity_[1381148780500]",
+ "Entity_[4233007065044]",
+ "Entity_[3292409227220]",
+ "Entity_[3910884517844]",
+ "Entity_[1935199561684]",
+ "Entity_[2076933482452]",
+ "Entity_[900112443348]",
+ "Entity_[2274501978068]",
+ "Entity_[1089091004372]",
+ "Entity_[3193624979412]",
+ "Entity_[1892249888724]",
+ "Entity_[1209350088660]",
+ "Entity_[3885114714068]",
+ "Entity_[2957401778132]",
+ "Entity_[2231552305108]",
+ "Entity_[2192897599444]",
+ "Entity_[943062116308]",
+ "Entity_[2974581647316]",
+ "Entity_[3580172036052]",
+ "Entity_[3627416676308]",
+ "Entity_[4559424579540]",
+ "Entity_[2454890604500]",
+ "Entity_[1475638061012]",
+ "Entity_[2824257791956]",
+ "Entity_[4198647326676]",
+ "Entity_[4520769873876]",
+ "Entity_[1479933028308]",
+ "Entity_[2566559754196]",
+ "Entity_[1604487079892]",
+ "Entity_[1561537406932]",
+ "Entity_[3331063932884]",
+ "Entity_[1729041131476]",
+ "Entity_[676774143956]",
+ "Entity_[2158537861076]",
+ "Entity_[1948084463572]",
+ "Entity_[4112747980756]",
+ "Entity_[1132040677332]",
+ "Entity_[1870775052244]",
+ "Entity_[3468502886356]",
+ "Entity_[1174990350292]",
+ "Entity_[715428849620]",
+ "Entity_[590874798036]",
+ "Entity_[3773445564372]",
+ "Entity_[1716156229588]",
+ "Entity_[3803510335444]",
+ "Entity_[1441278322644]",
+ "Entity_[2248732174292]",
+ "Entity_[4284546672596]",
+ "Entity_[3369718638548]",
+ "Entity_[4598079285204]",
+ "Entity_[659594274772]",
+ "Entity_[2381876160468]",
+ "Entity_[2115588188116]",
+ "Entity_[3764855629780]",
+ "Entity_[2811372890068]",
+ "Entity_[1746221000660]",
+ "Entity_[3034711189460]",
+ "Entity_[4366151051220]",
+ "Entity_[1157810481108]",
+ "Entity_[651004340180]",
+ "Entity_[2875797399508]",
+ "Entity_[2257322108884]",
+ "Entity_[3223689750484]",
+ "Entity_[2570854721492]",
+ "Entity_[4456345364436]",
+ "Entity_[1578717276116]",
+ "Entity_[2656754067412]",
+ "Entity_[1926609627092]",
+ "Entity_[2772718184404]",
+ "Entity_[1647436752852]",
+ "Entity_[3210804848596]",
+ "Entity_[818508064724]",
+ "Entity_[4537949743060]",
+ "Entity_[4018258700244]",
+ "Entity_[2768423217108]",
+ "Entity_[1432688388052]",
+ "Entity_[2360401323988]",
+ "Entity_[2343221454804]",
+ "Entity_[2622394329044]",
+ "Entity_[792738260948]",
+ "Entity_[1694681393108]",
+ "Entity_[2038278776788]",
+ "Entity_[3266639423444]",
+ "Entity_[4155697653716]",
+ "Entity_[3313884063700]",
+ "Entity_[2442005702612]",
+ "Entity_[1084796037076]",
+ "Entity_[1535767603156]",
+ "Entity_[3391193475028]",
+ "Entity_[3923769419732]",
+ "Entity_[3782035498964]",
+ "Entity_[3953834190804]",
+ "Entity_[625234536404]",
+ "Entity_[4512179939284]",
+ "Entity_[3081955829716]",
+ "Entity_[3275229358036]",
+ "Entity_[4091273144276]",
+ "Entity_[2858617530324]",
+ "Entity_[1235119892436]",
+ "Entity_[3300999161812]",
+ "Entity_[2021098907604]",
+ "Entity_[2596624525268]",
+ "Entity_[3069070927828]",
+ "Entity_[2905862170580]",
+ "Entity_[3734790858708]",
+ "Entity_[3008941385684]",
+ "Entity_[4490705102804]",
+ "Entity_[822803032020]",
+ "Entity_[3709021054932]",
+ "Entity_[2484955375572]",
+ "Entity_[2502135244756]",
+ "Entity_[3404078376916]",
+ "Entity_[3687546218452]",
+ "Entity_[3112020600788]",
+ "Entity_[3056186025940]",
+ "Entity_[749788587988]",
+ "Entity_[4379035953108]",
+ "Entity_[1067616167892]",
+ "Entity_[3352538769364]",
+ "Entity_[4099863078868]",
+ "Entity_[2411940931540]",
+ "Entity_[1656026687444]",
+ "Entity_[3932359354324]",
+ "Entity_[1741926033364]",
+ "Entity_[4168582555604]",
+ "Entity_[2064048580564]",
+ "Entity_[758378522580]",
+ "Entity_[2678228903892]",
+ "Entity_[3631711643604]",
+ "Entity_[2287386879956]",
+ "Entity_[1845005248468]",
+ "Entity_[3477092820948]",
+ "Entity_[2089818384340]",
+ "Entity_[1037551396820]",
+ "Entity_[702543947732]",
+ "Entity_[1681796491220]",
+ "Entity_[908702377940]",
+ "Entity_[2106998253524]",
+ "Entity_[3129200469972]",
+ "Entity_[3863639877588]",
+ "Entity_[1050436298708]",
+ "Entity_[2012508973012]",
+ "Entity_[3618826741716]",
+ "Entity_[3386898507732]",
+ "Entity_[3434143147988]",
+ "Entity_[2437710735316]",
+ "Entity_[4288841639892]",
+ "Entity_[1875070019540]",
+ "Entity_[2128473090004]",
+ "Entity_[3949539223508]",
+ "Entity_[3489977722836]",
+ "Entity_[1668911589332]",
+ "Entity_[1398328649684]",
+ "Entity_[3541517330388]",
+ "Entity_[1806350542804]",
+ "Entity_[2085523417044]",
+ "Entity_[732608718804]",
+ "Entity_[4439165495252]",
+ "Entity_[3528632428500]",
+ "Entity_[2407645964244]",
+ "Entity_[1930904594388]",
+ "Entity_[4374740985812]",
+ "Entity_[1509997799380]",
+ "Entity_[1290954467284]",
+ "Entity_[2819962824660]",
+ "Entity_[2944516876244]",
+ "Entity_[1583012243412]",
+ "Entity_[1613077014484]",
+ "Entity_[3451323017172]",
+ "Entity_[938767149012]",
+ "Entity_[3739085826004]",
+ "Entity_[1192170219476]",
+ "Entity_[3824985171924]",
+ "Entity_[1956674398164]",
+ "Entity_[2789898053588]",
+ "Entity_[3146380339156]",
+ "Entity_[3670366349268]",
+ "Entity_[2429120800724]",
+ "Entity_[1076206102484]",
+ "Entity_[1394033682388]",
+ "Entity_[3455617984468]",
+ "Entity_[2712588642260]",
+ "Entity_[4181467457492]",
+ "Entity_[3103430666196]",
+ "Entity_[1200760154068]",
+ "Entity_[4121337915348]",
+ "Entity_[2652459100116]",
+ "Entity_[1621666949076]",
+ "Entity_[1063321200596]",
+ "Entity_[1823530411988]",
+ "Entity_[2682523871188]",
+ "Entity_[3696136153044]",
+ "Entity_[3816395237332]",
+ "Entity_[1939494528980]",
+ "Entity_[2884387334100]",
+ "Entity_[2124178122708]",
+ "Entity_[3026121254868]",
+ "Entity_[1853595183060]",
+ "Entity_[2828552759252]",
+ "Entity_[2364696291284]",
+ "Entity_[2072638515156]",
+ "Entity_[2008214005716]",
+ "Entity_[930177214420]",
+ "Entity_[2472070473684]",
+ "Entity_[3133495437268]",
+ "Entity_[668184209364]",
+ "Entity_[3593056937940]",
+ "Entity_[3481387788244]",
+ "Entity_[1016076560340]",
+ "Entity_[3730495891412]",
+ "Entity_[2055458645972]",
+ "Entity_[1454163224532]",
+ "Entity_[2167127795668]",
+ "Entity_[2184307664852]",
+ "Entity_[1836415313876]",
+ "Entity_[3374013605844]",
+ "Entity_[2708293674964]",
+ "Entity_[3743380793300]",
+ "Entity_[3661776414676]",
+ "Entity_[805623162836]",
+ "Entity_[4400510789588]",
+ "Entity_[1071911135188]",
+ "Entity_[1857890150356]",
+ "Entity_[3245164586964]",
+ "Entity_[1226529957844]",
+ "Entity_[1548652505044]",
+ "Entity_[1110565840852]",
+ "Entity_[3799215368148]",
+ "Entity_[4164287588308]",
+ "Entity_[4069798307796]"
+ ]
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1003191658452]": {
+ "Id": "Entity_[1003191658452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1007486625748]": {
+ "Id": "Entity_[1007486625748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1011781593044]": {
+ "Id": "Entity_[1011781593044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1016076560340]": {
+ "Id": "Entity_[1016076560340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1020371527636]": {
+ "Id": "Entity_[1020371527636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1024666494932]": {
+ "Id": "Entity_[1024666494932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1028961462228]": {
+ "Id": "Entity_[1028961462228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1033256429524]": {
+ "Id": "Entity_[1033256429524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1037551396820]": {
+ "Id": "Entity_[1037551396820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1041846364116]": {
+ "Id": "Entity_[1041846364116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1046141331412]": {
+ "Id": "Entity_[1046141331412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1050436298708]": {
+ "Id": "Entity_[1050436298708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1054731266004]": {
+ "Id": "Entity_[1054731266004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1059026233300]": {
+ "Id": "Entity_[1059026233300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1063321200596]": {
+ "Id": "Entity_[1063321200596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1067616167892]": {
+ "Id": "Entity_[1067616167892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1071911135188]": {
+ "Id": "Entity_[1071911135188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1076206102484]": {
+ "Id": "Entity_[1076206102484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1080501069780]": {
+ "Id": "Entity_[1080501069780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1084796037076]": {
+ "Id": "Entity_[1084796037076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1089091004372]": {
+ "Id": "Entity_[1089091004372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1093385971668]": {
+ "Id": "Entity_[1093385971668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1097680938964]": {
+ "Id": "Entity_[1097680938964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1101975906260]": {
+ "Id": "Entity_[1101975906260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1106270873556]": {
+ "Id": "Entity_[1106270873556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1110565840852]": {
+ "Id": "Entity_[1110565840852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1114860808148]": {
+ "Id": "Entity_[1114860808148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1119155775444]": {
+ "Id": "Entity_[1119155775444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1123450742740]": {
+ "Id": "Entity_[1123450742740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1127745710036]": {
+ "Id": "Entity_[1127745710036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1132040677332]": {
+ "Id": "Entity_[1132040677332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1136335644628]": {
+ "Id": "Entity_[1136335644628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1140630611924]": {
+ "Id": "Entity_[1140630611924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1144925579220]": {
+ "Id": "Entity_[1144925579220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1149220546516]": {
+ "Id": "Entity_[1149220546516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1153515513812]": {
+ "Id": "Entity_[1153515513812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1157810481108]": {
+ "Id": "Entity_[1157810481108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1162105448404]": {
+ "Id": "Entity_[1162105448404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1166400415700]": {
+ "Id": "Entity_[1166400415700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1170695382996]": {
+ "Id": "Entity_[1170695382996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1174990350292]": {
+ "Id": "Entity_[1174990350292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1179285317588]": {
+ "Id": "Entity_[1179285317588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1183580284884]": {
+ "Id": "Entity_[1183580284884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1187875252180]": {
+ "Id": "Entity_[1187875252180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1192170219476]": {
+ "Id": "Entity_[1192170219476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1196465186772]": {
+ "Id": "Entity_[1196465186772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1200760154068]": {
+ "Id": "Entity_[1200760154068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1205055121364]": {
+ "Id": "Entity_[1205055121364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1209350088660]": {
+ "Id": "Entity_[1209350088660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1213645055956]": {
+ "Id": "Entity_[1213645055956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1217940023252]": {
+ "Id": "Entity_[1217940023252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1222234990548]": {
+ "Id": "Entity_[1222234990548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1226529957844]": {
+ "Id": "Entity_[1226529957844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1230824925140]": {
+ "Id": "Entity_[1230824925140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1235119892436]": {
+ "Id": "Entity_[1235119892436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1239414859732]": {
+ "Id": "Entity_[1239414859732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1243709827028]": {
+ "Id": "Entity_[1243709827028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1248004794324]": {
+ "Id": "Entity_[1248004794324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1252299761620]": {
+ "Id": "Entity_[1252299761620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1256594728916]": {
+ "Id": "Entity_[1256594728916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1260889696212]": {
+ "Id": "Entity_[1260889696212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1265184663508]": {
+ "Id": "Entity_[1265184663508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1269479630804]": {
+ "Id": "Entity_[1269479630804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1273774598100]": {
+ "Id": "Entity_[1273774598100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1278069565396]": {
+ "Id": "Entity_[1278069565396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1282364532692]": {
+ "Id": "Entity_[1282364532692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1286659499988]": {
+ "Id": "Entity_[1286659499988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1290954467284]": {
+ "Id": "Entity_[1290954467284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1295249434580]": {
+ "Id": "Entity_[1295249434580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1299544401876]": {
+ "Id": "Entity_[1299544401876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1303839369172]": {
+ "Id": "Entity_[1303839369172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1308134336468]": {
+ "Id": "Entity_[1308134336468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1312429303764]": {
+ "Id": "Entity_[1312429303764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1316724271060]": {
+ "Id": "Entity_[1316724271060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1321019238356]": {
+ "Id": "Entity_[1321019238356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1325314205652]": {
+ "Id": "Entity_[1325314205652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1329609172948]": {
+ "Id": "Entity_[1329609172948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1333904140244]": {
+ "Id": "Entity_[1333904140244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1338199107540]": {
+ "Id": "Entity_[1338199107540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1342494074836]": {
+ "Id": "Entity_[1342494074836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1346789042132]": {
+ "Id": "Entity_[1346789042132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1351084009428]": {
+ "Id": "Entity_[1351084009428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1355378976724]": {
+ "Id": "Entity_[1355378976724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1359673944020]": {
+ "Id": "Entity_[1359673944020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1363968911316]": {
+ "Id": "Entity_[1363968911316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1368263878612]": {
+ "Id": "Entity_[1368263878612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1372558845908]": {
+ "Id": "Entity_[1372558845908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1376853813204]": {
+ "Id": "Entity_[1376853813204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1381148780500]": {
+ "Id": "Entity_[1381148780500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1385443747796]": {
+ "Id": "Entity_[1385443747796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1389738715092]": {
+ "Id": "Entity_[1389738715092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1394033682388]": {
+ "Id": "Entity_[1394033682388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1398328649684]": {
+ "Id": "Entity_[1398328649684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1402623616980]": {
+ "Id": "Entity_[1402623616980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1406918584276]": {
+ "Id": "Entity_[1406918584276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1411213551572]": {
+ "Id": "Entity_[1411213551572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1415508518868]": {
+ "Id": "Entity_[1415508518868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1419803486164]": {
+ "Id": "Entity_[1419803486164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1424098453460]": {
+ "Id": "Entity_[1424098453460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1428393420756]": {
+ "Id": "Entity_[1428393420756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1432688388052]": {
+ "Id": "Entity_[1432688388052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1436983355348]": {
+ "Id": "Entity_[1436983355348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1441278322644]": {
+ "Id": "Entity_[1441278322644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1445573289940]": {
+ "Id": "Entity_[1445573289940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1449868257236]": {
+ "Id": "Entity_[1449868257236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1454163224532]": {
+ "Id": "Entity_[1454163224532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1458458191828]": {
+ "Id": "Entity_[1458458191828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1462753159124]": {
+ "Id": "Entity_[1462753159124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1467048126420]": {
+ "Id": "Entity_[1467048126420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1471343093716]": {
+ "Id": "Entity_[1471343093716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1475638061012]": {
+ "Id": "Entity_[1475638061012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1479933028308]": {
+ "Id": "Entity_[1479933028308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1484227995604]": {
+ "Id": "Entity_[1484227995604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1488522962900]": {
+ "Id": "Entity_[1488522962900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1492817930196]": {
+ "Id": "Entity_[1492817930196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1497112897492]": {
+ "Id": "Entity_[1497112897492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1501407864788]": {
+ "Id": "Entity_[1501407864788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1505702832084]": {
+ "Id": "Entity_[1505702832084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1509997799380]": {
+ "Id": "Entity_[1509997799380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1514292766676]": {
+ "Id": "Entity_[1514292766676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1518587733972]": {
+ "Id": "Entity_[1518587733972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1522882701268]": {
+ "Id": "Entity_[1522882701268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1527177668564]": {
+ "Id": "Entity_[1527177668564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1531472635860]": {
+ "Id": "Entity_[1531472635860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1535767603156]": {
+ "Id": "Entity_[1535767603156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1540062570452]": {
+ "Id": "Entity_[1540062570452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1544357537748]": {
+ "Id": "Entity_[1544357537748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1548652505044]": {
+ "Id": "Entity_[1548652505044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1552947472340]": {
+ "Id": "Entity_[1552947472340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1557242439636]": {
+ "Id": "Entity_[1557242439636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1561537406932]": {
+ "Id": "Entity_[1561537406932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 54.6579704284668
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1565832374228]": {
+ "Id": "Entity_[1565832374228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1570127341524]": {
+ "Id": "Entity_[1570127341524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1574422308820]": {
+ "Id": "Entity_[1574422308820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1578717276116]": {
+ "Id": "Entity_[1578717276116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1583012243412]": {
+ "Id": "Entity_[1583012243412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1587307210708]": {
+ "Id": "Entity_[1587307210708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1591602178004]": {
+ "Id": "Entity_[1591602178004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1595897145300]": {
+ "Id": "Entity_[1595897145300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1600192112596]": {
+ "Id": "Entity_[1600192112596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1604487079892]": {
+ "Id": "Entity_[1604487079892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1608782047188]": {
+ "Id": "Entity_[1608782047188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1613077014484]": {
+ "Id": "Entity_[1613077014484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1617371981780]": {
+ "Id": "Entity_[1617371981780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1621666949076]": {
+ "Id": "Entity_[1621666949076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1625961916372]": {
+ "Id": "Entity_[1625961916372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1630256883668]": {
+ "Id": "Entity_[1630256883668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1634551850964]": {
+ "Id": "Entity_[1634551850964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1638846818260]": {
+ "Id": "Entity_[1638846818260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1643141785556]": {
+ "Id": "Entity_[1643141785556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1647436752852]": {
+ "Id": "Entity_[1647436752852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1651731720148]": {
+ "Id": "Entity_[1651731720148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1656026687444]": {
+ "Id": "Entity_[1656026687444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1660321654740]": {
+ "Id": "Entity_[1660321654740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1664616622036]": {
+ "Id": "Entity_[1664616622036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1668911589332]": {
+ "Id": "Entity_[1668911589332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1673206556628]": {
+ "Id": "Entity_[1673206556628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1677501523924]": {
+ "Id": "Entity_[1677501523924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1681796491220]": {
+ "Id": "Entity_[1681796491220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1686091458516]": {
+ "Id": "Entity_[1686091458516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1690386425812]": {
+ "Id": "Entity_[1690386425812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1694681393108]": {
+ "Id": "Entity_[1694681393108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1698976360404]": {
+ "Id": "Entity_[1698976360404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1703271327700]": {
+ "Id": "Entity_[1703271327700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1707566294996]": {
+ "Id": "Entity_[1707566294996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 54.6579704284668
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1711861262292]": {
+ "Id": "Entity_[1711861262292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1716156229588]": {
+ "Id": "Entity_[1716156229588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1720451196884]": {
+ "Id": "Entity_[1720451196884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1724746164180]": {
+ "Id": "Entity_[1724746164180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1729041131476]": {
+ "Id": "Entity_[1729041131476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1733336098772]": {
+ "Id": "Entity_[1733336098772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1737631066068]": {
+ "Id": "Entity_[1737631066068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1741926033364]": {
+ "Id": "Entity_[1741926033364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1746221000660]": {
+ "Id": "Entity_[1746221000660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1750515967956]": {
+ "Id": "Entity_[1750515967956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1754810935252]": {
+ "Id": "Entity_[1754810935252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1759105902548]": {
+ "Id": "Entity_[1759105902548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1763400869844]": {
+ "Id": "Entity_[1763400869844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1767695837140]": {
+ "Id": "Entity_[1767695837140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1771990804436]": {
+ "Id": "Entity_[1771990804436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1776285771732]": {
+ "Id": "Entity_[1776285771732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1780580739028]": {
+ "Id": "Entity_[1780580739028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1784875706324]": {
+ "Id": "Entity_[1784875706324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1789170673620]": {
+ "Id": "Entity_[1789170673620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1793465640916]": {
+ "Id": "Entity_[1793465640916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1797760608212]": {
+ "Id": "Entity_[1797760608212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1802055575508]": {
+ "Id": "Entity_[1802055575508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1806350542804]": {
+ "Id": "Entity_[1806350542804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1810645510100]": {
+ "Id": "Entity_[1810645510100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1814940477396]": {
+ "Id": "Entity_[1814940477396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1819235444692]": {
+ "Id": "Entity_[1819235444692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1823530411988]": {
+ "Id": "Entity_[1823530411988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1827825379284]": {
+ "Id": "Entity_[1827825379284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1832120346580]": {
+ "Id": "Entity_[1832120346580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1836415313876]": {
+ "Id": "Entity_[1836415313876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1840710281172]": {
+ "Id": "Entity_[1840710281172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1845005248468]": {
+ "Id": "Entity_[1845005248468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1849300215764]": {
+ "Id": "Entity_[1849300215764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1853595183060]": {
+ "Id": "Entity_[1853595183060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1857890150356]": {
+ "Id": "Entity_[1857890150356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1862185117652]": {
+ "Id": "Entity_[1862185117652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1866480084948]": {
+ "Id": "Entity_[1866480084948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1870775052244]": {
+ "Id": "Entity_[1870775052244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1875070019540]": {
+ "Id": "Entity_[1875070019540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1879364986836]": {
+ "Id": "Entity_[1879364986836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 114.53101348876953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1883659954132]": {
+ "Id": "Entity_[1883659954132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1887954921428]": {
+ "Id": "Entity_[1887954921428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1892249888724]": {
+ "Id": "Entity_[1892249888724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1896544856020]": {
+ "Id": "Entity_[1896544856020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1900839823316]": {
+ "Id": "Entity_[1900839823316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1905134790612]": {
+ "Id": "Entity_[1905134790612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1909429757908]": {
+ "Id": "Entity_[1909429757908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1913724725204]": {
+ "Id": "Entity_[1913724725204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1918019692500]": {
+ "Id": "Entity_[1918019692500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1922314659796]": {
+ "Id": "Entity_[1922314659796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1926609627092]": {
+ "Id": "Entity_[1926609627092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1930904594388]": {
+ "Id": "Entity_[1930904594388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1935199561684]": {
+ "Id": "Entity_[1935199561684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1939494528980]": {
+ "Id": "Entity_[1939494528980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1943789496276]": {
+ "Id": "Entity_[1943789496276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1948084463572]": {
+ "Id": "Entity_[1948084463572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1952379430868]": {
+ "Id": "Entity_[1952379430868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 24.573455810546875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1956674398164]": {
+ "Id": "Entity_[1956674398164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1960969365460]": {
+ "Id": "Entity_[1960969365460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1965264332756]": {
+ "Id": "Entity_[1965264332756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1969559300052]": {
+ "Id": "Entity_[1969559300052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1973854267348]": {
+ "Id": "Entity_[1973854267348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1978149234644]": {
+ "Id": "Entity_[1978149234644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1982444201940]": {
+ "Id": "Entity_[1982444201940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1986739169236]": {
+ "Id": "Entity_[1986739169236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1991034136532]": {
+ "Id": "Entity_[1991034136532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1995329103828]": {
+ "Id": "Entity_[1995329103828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[1999624071124]": {
+ "Id": "Entity_[1999624071124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2003919038420]": {
+ "Id": "Entity_[2003919038420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2008214005716]": {
+ "Id": "Entity_[2008214005716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2012508973012]": {
+ "Id": "Entity_[2012508973012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2016803940308]": {
+ "Id": "Entity_[2016803940308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2021098907604]": {
+ "Id": "Entity_[2021098907604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2025393874900]": {
+ "Id": "Entity_[2025393874900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2029688842196]": {
+ "Id": "Entity_[2029688842196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2033983809492]": {
+ "Id": "Entity_[2033983809492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2038278776788]": {
+ "Id": "Entity_[2038278776788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2042573744084]": {
+ "Id": "Entity_[2042573744084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2046868711380]": {
+ "Id": "Entity_[2046868711380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2051163678676]": {
+ "Id": "Entity_[2051163678676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2055458645972]": {
+ "Id": "Entity_[2055458645972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2059753613268]": {
+ "Id": "Entity_[2059753613268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2064048580564]": {
+ "Id": "Entity_[2064048580564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2068343547860]": {
+ "Id": "Entity_[2068343547860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2072638515156]": {
+ "Id": "Entity_[2072638515156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2076933482452]": {
+ "Id": "Entity_[2076933482452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2081228449748]": {
+ "Id": "Entity_[2081228449748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2085523417044]": {
+ "Id": "Entity_[2085523417044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2089818384340]": {
+ "Id": "Entity_[2089818384340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2094113351636]": {
+ "Id": "Entity_[2094113351636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2098408318932]": {
+ "Id": "Entity_[2098408318932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2102703286228]": {
+ "Id": "Entity_[2102703286228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2106998253524]": {
+ "Id": "Entity_[2106998253524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2111293220820]": {
+ "Id": "Entity_[2111293220820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2115588188116]": {
+ "Id": "Entity_[2115588188116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2119883155412]": {
+ "Id": "Entity_[2119883155412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2124178122708]": {
+ "Id": "Entity_[2124178122708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2128473090004]": {
+ "Id": "Entity_[2128473090004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2132768057300]": {
+ "Id": "Entity_[2132768057300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2137063024596]": {
+ "Id": "Entity_[2137063024596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2141357991892]": {
+ "Id": "Entity_[2141357991892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2145652959188]": {
+ "Id": "Entity_[2145652959188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2149947926484]": {
+ "Id": "Entity_[2149947926484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2154242893780]": {
+ "Id": "Entity_[2154242893780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2158537861076]": {
+ "Id": "Entity_[2158537861076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2162832828372]": {
+ "Id": "Entity_[2162832828372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2167127795668]": {
+ "Id": "Entity_[2167127795668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2171422762964]": {
+ "Id": "Entity_[2171422762964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2175717730260]": {
+ "Id": "Entity_[2175717730260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2180012697556]": {
+ "Id": "Entity_[2180012697556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2184307664852]": {
+ "Id": "Entity_[2184307664852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2188602632148]": {
+ "Id": "Entity_[2188602632148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2192897599444]": {
+ "Id": "Entity_[2192897599444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2197192566740]": {
+ "Id": "Entity_[2197192566740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2201487534036]": {
+ "Id": "Entity_[2201487534036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2205782501332]": {
+ "Id": "Entity_[2205782501332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2210077468628]": {
+ "Id": "Entity_[2210077468628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2214372435924]": {
+ "Id": "Entity_[2214372435924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2218667403220]": {
+ "Id": "Entity_[2218667403220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2222962370516]": {
+ "Id": "Entity_[2222962370516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2227257337812]": {
+ "Id": "Entity_[2227257337812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2231552305108]": {
+ "Id": "Entity_[2231552305108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2235847272404]": {
+ "Id": "Entity_[2235847272404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2240142239700]": {
+ "Id": "Entity_[2240142239700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2244437206996]": {
+ "Id": "Entity_[2244437206996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2248732174292]": {
+ "Id": "Entity_[2248732174292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2253027141588]": {
+ "Id": "Entity_[2253027141588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2257322108884]": {
+ "Id": "Entity_[2257322108884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2261617076180]": {
+ "Id": "Entity_[2261617076180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2265912043476]": {
+ "Id": "Entity_[2265912043476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2270207010772]": {
+ "Id": "Entity_[2270207010772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2274501978068]": {
+ "Id": "Entity_[2274501978068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2278796945364]": {
+ "Id": "Entity_[2278796945364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2283091912660]": {
+ "Id": "Entity_[2283091912660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2287386879956]": {
+ "Id": "Entity_[2287386879956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2291681847252]": {
+ "Id": "Entity_[2291681847252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2295976814548]": {
+ "Id": "Entity_[2295976814548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2300271781844]": {
+ "Id": "Entity_[2300271781844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2304566749140]": {
+ "Id": "Entity_[2304566749140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2308861716436]": {
+ "Id": "Entity_[2308861716436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2313156683732]": {
+ "Id": "Entity_[2313156683732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2317451651028]": {
+ "Id": "Entity_[2317451651028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2321746618324]": {
+ "Id": "Entity_[2321746618324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2326041585620]": {
+ "Id": "Entity_[2326041585620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2330336552916]": {
+ "Id": "Entity_[2330336552916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2334631520212]": {
+ "Id": "Entity_[2334631520212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2338926487508]": {
+ "Id": "Entity_[2338926487508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2343221454804]": {
+ "Id": "Entity_[2343221454804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2347516422100]": {
+ "Id": "Entity_[2347516422100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2351811389396]": {
+ "Id": "Entity_[2351811389396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2356106356692]": {
+ "Id": "Entity_[2356106356692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2360401323988]": {
+ "Id": "Entity_[2360401323988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2364696291284]": {
+ "Id": "Entity_[2364696291284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2368991258580]": {
+ "Id": "Entity_[2368991258580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2373286225876]": {
+ "Id": "Entity_[2373286225876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2377581193172]": {
+ "Id": "Entity_[2377581193172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2381876160468]": {
+ "Id": "Entity_[2381876160468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2386171127764]": {
+ "Id": "Entity_[2386171127764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2390466095060]": {
+ "Id": "Entity_[2390466095060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2394761062356]": {
+ "Id": "Entity_[2394761062356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2399056029652]": {
+ "Id": "Entity_[2399056029652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2403350996948]": {
+ "Id": "Entity_[2403350996948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2407645964244]": {
+ "Id": "Entity_[2407645964244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2411940931540]": {
+ "Id": "Entity_[2411940931540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2416235898836]": {
+ "Id": "Entity_[2416235898836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2420530866132]": {
+ "Id": "Entity_[2420530866132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2424825833428]": {
+ "Id": "Entity_[2424825833428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2429120800724]": {
+ "Id": "Entity_[2429120800724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2433415768020]": {
+ "Id": "Entity_[2433415768020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2437710735316]": {
+ "Id": "Entity_[2437710735316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2442005702612]": {
+ "Id": "Entity_[2442005702612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2446300669908]": {
+ "Id": "Entity_[2446300669908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2450595637204]": {
+ "Id": "Entity_[2450595637204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2454890604500]": {
+ "Id": "Entity_[2454890604500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2459185571796]": {
+ "Id": "Entity_[2459185571796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2463480539092]": {
+ "Id": "Entity_[2463480539092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2467775506388]": {
+ "Id": "Entity_[2467775506388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2472070473684]": {
+ "Id": "Entity_[2472070473684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2476365440980]": {
+ "Id": "Entity_[2476365440980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2480660408276]": {
+ "Id": "Entity_[2480660408276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2484955375572]": {
+ "Id": "Entity_[2484955375572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2489250342868]": {
+ "Id": "Entity_[2489250342868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2493545310164]": {
+ "Id": "Entity_[2493545310164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2497840277460]": {
+ "Id": "Entity_[2497840277460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2502135244756]": {
+ "Id": "Entity_[2502135244756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2506430212052]": {
+ "Id": "Entity_[2506430212052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2510725179348]": {
+ "Id": "Entity_[2510725179348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2515020146644]": {
+ "Id": "Entity_[2515020146644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2519315113940]": {
+ "Id": "Entity_[2519315113940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2523610081236]": {
+ "Id": "Entity_[2523610081236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2527905048532]": {
+ "Id": "Entity_[2527905048532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2532200015828]": {
+ "Id": "Entity_[2532200015828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2536494983124]": {
+ "Id": "Entity_[2536494983124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2540789950420]": {
+ "Id": "Entity_[2540789950420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2545084917716]": {
+ "Id": "Entity_[2545084917716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2549379885012]": {
+ "Id": "Entity_[2549379885012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2553674852308]": {
+ "Id": "Entity_[2553674852308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2557969819604]": {
+ "Id": "Entity_[2557969819604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2562264786900]": {
+ "Id": "Entity_[2562264786900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2566559754196]": {
+ "Id": "Entity_[2566559754196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2570854721492]": {
+ "Id": "Entity_[2570854721492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2575149688788]": {
+ "Id": "Entity_[2575149688788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2579444656084]": {
+ "Id": "Entity_[2579444656084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2583739623380]": {
+ "Id": "Entity_[2583739623380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2588034590676]": {
+ "Id": "Entity_[2588034590676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2592329557972]": {
+ "Id": "Entity_[2592329557972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2596624525268]": {
+ "Id": "Entity_[2596624525268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2600919492564]": {
+ "Id": "Entity_[2600919492564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2605214459860]": {
+ "Id": "Entity_[2605214459860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2609509427156]": {
+ "Id": "Entity_[2609509427156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2613804394452]": {
+ "Id": "Entity_[2613804394452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2618099361748]": {
+ "Id": "Entity_[2618099361748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2622394329044]": {
+ "Id": "Entity_[2622394329044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2626689296340]": {
+ "Id": "Entity_[2626689296340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2630984263636]": {
+ "Id": "Entity_[2630984263636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2635279230932]": {
+ "Id": "Entity_[2635279230932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2639574198228]": {
+ "Id": "Entity_[2639574198228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2643869165524]": {
+ "Id": "Entity_[2643869165524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2648164132820]": {
+ "Id": "Entity_[2648164132820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2652459100116]": {
+ "Id": "Entity_[2652459100116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2656754067412]": {
+ "Id": "Entity_[2656754067412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2661049034708]": {
+ "Id": "Entity_[2661049034708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2665344002004]": {
+ "Id": "Entity_[2665344002004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2669638969300]": {
+ "Id": "Entity_[2669638969300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2673933936596]": {
+ "Id": "Entity_[2673933936596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2678228903892]": {
+ "Id": "Entity_[2678228903892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2682523871188]": {
+ "Id": "Entity_[2682523871188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2686818838484]": {
+ "Id": "Entity_[2686818838484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2691113805780]": {
+ "Id": "Entity_[2691113805780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2695408773076]": {
+ "Id": "Entity_[2695408773076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2699703740372]": {
+ "Id": "Entity_[2699703740372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2703998707668]": {
+ "Id": "Entity_[2703998707668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2708293674964]": {
+ "Id": "Entity_[2708293674964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2712588642260]": {
+ "Id": "Entity_[2712588642260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2716883609556]": {
+ "Id": "Entity_[2716883609556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2721178576852]": {
+ "Id": "Entity_[2721178576852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2725473544148]": {
+ "Id": "Entity_[2725473544148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2729768511444]": {
+ "Id": "Entity_[2729768511444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2734063478740]": {
+ "Id": "Entity_[2734063478740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2738358446036]": {
+ "Id": "Entity_[2738358446036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2742653413332]": {
+ "Id": "Entity_[2742653413332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2746948380628]": {
+ "Id": "Entity_[2746948380628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2751243347924]": {
+ "Id": "Entity_[2751243347924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2755538315220]": {
+ "Id": "Entity_[2755538315220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2759833282516]": {
+ "Id": "Entity_[2759833282516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2764128249812]": {
+ "Id": "Entity_[2764128249812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2768423217108]": {
+ "Id": "Entity_[2768423217108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2772718184404]": {
+ "Id": "Entity_[2772718184404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2777013151700]": {
+ "Id": "Entity_[2777013151700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2781308118996]": {
+ "Id": "Entity_[2781308118996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2785603086292]": {
+ "Id": "Entity_[2785603086292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2789898053588]": {
+ "Id": "Entity_[2789898053588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2794193020884]": {
+ "Id": "Entity_[2794193020884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2798487988180]": {
+ "Id": "Entity_[2798487988180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2802782955476]": {
+ "Id": "Entity_[2802782955476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2807077922772]": {
+ "Id": "Entity_[2807077922772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2811372890068]": {
+ "Id": "Entity_[2811372890068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2815667857364]": {
+ "Id": "Entity_[2815667857364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2819962824660]": {
+ "Id": "Entity_[2819962824660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2824257791956]": {
+ "Id": "Entity_[2824257791956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2828552759252]": {
+ "Id": "Entity_[2828552759252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2832847726548]": {
+ "Id": "Entity_[2832847726548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2837142693844]": {
+ "Id": "Entity_[2837142693844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2841437661140]": {
+ "Id": "Entity_[2841437661140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2845732628436]": {
+ "Id": "Entity_[2845732628436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2850027595732]": {
+ "Id": "Entity_[2850027595732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2854322563028]": {
+ "Id": "Entity_[2854322563028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2858617530324]": {
+ "Id": "Entity_[2858617530324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2862912497620]": {
+ "Id": "Entity_[2862912497620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2867207464916]": {
+ "Id": "Entity_[2867207464916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2871502432212]": {
+ "Id": "Entity_[2871502432212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2875797399508]": {
+ "Id": "Entity_[2875797399508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2880092366804]": {
+ "Id": "Entity_[2880092366804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2884387334100]": {
+ "Id": "Entity_[2884387334100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2888682301396]": {
+ "Id": "Entity_[2888682301396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2892977268692]": {
+ "Id": "Entity_[2892977268692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2897272235988]": {
+ "Id": "Entity_[2897272235988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2901567203284]": {
+ "Id": "Entity_[2901567203284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2905862170580]": {
+ "Id": "Entity_[2905862170580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2910157137876]": {
+ "Id": "Entity_[2910157137876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2914452105172]": {
+ "Id": "Entity_[2914452105172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2918747072468]": {
+ "Id": "Entity_[2918747072468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2923042039764]": {
+ "Id": "Entity_[2923042039764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2927337007060]": {
+ "Id": "Entity_[2927337007060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2931631974356]": {
+ "Id": "Entity_[2931631974356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2935926941652]": {
+ "Id": "Entity_[2935926941652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2940221908948]": {
+ "Id": "Entity_[2940221908948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2944516876244]": {
+ "Id": "Entity_[2944516876244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2948811843540]": {
+ "Id": "Entity_[2948811843540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2953106810836]": {
+ "Id": "Entity_[2953106810836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 99.47334289550781
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2957401778132]": {
+ "Id": "Entity_[2957401778132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2961696745428]": {
+ "Id": "Entity_[2961696745428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2965991712724]": {
+ "Id": "Entity_[2965991712724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2970286680020]": {
+ "Id": "Entity_[2970286680020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2974581647316]": {
+ "Id": "Entity_[2974581647316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2978876614612]": {
+ "Id": "Entity_[2978876614612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2983171581908]": {
+ "Id": "Entity_[2983171581908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2987466549204]": {
+ "Id": "Entity_[2987466549204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2991761516500]": {
+ "Id": "Entity_[2991761516500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[2996056483796]": {
+ "Id": "Entity_[2996056483796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3000351451092]": {
+ "Id": "Entity_[3000351451092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3004646418388]": {
+ "Id": "Entity_[3004646418388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3008941385684]": {
+ "Id": "Entity_[3008941385684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3013236352980]": {
+ "Id": "Entity_[3013236352980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3017531320276]": {
+ "Id": "Entity_[3017531320276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3021826287572]": {
+ "Id": "Entity_[3021826287572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3026121254868]": {
+ "Id": "Entity_[3026121254868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3030416222164]": {
+ "Id": "Entity_[3030416222164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3034711189460]": {
+ "Id": "Entity_[3034711189460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3039006156756]": {
+ "Id": "Entity_[3039006156756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3043301124052]": {
+ "Id": "Entity_[3043301124052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3047596091348]": {
+ "Id": "Entity_[3047596091348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3051891058644]": {
+ "Id": "Entity_[3051891058644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 69.38883209228516
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3056186025940]": {
+ "Id": "Entity_[3056186025940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3060480993236]": {
+ "Id": "Entity_[3060480993236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3064775960532]": {
+ "Id": "Entity_[3064775960532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3069070927828]": {
+ "Id": "Entity_[3069070927828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3073365895124]": {
+ "Id": "Entity_[3073365895124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3077660862420]": {
+ "Id": "Entity_[3077660862420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3081955829716]": {
+ "Id": "Entity_[3081955829716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3086250797012]": {
+ "Id": "Entity_[3086250797012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3090545764308]": {
+ "Id": "Entity_[3090545764308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3094840731604]": {
+ "Id": "Entity_[3094840731604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3099135698900]": {
+ "Id": "Entity_[3099135698900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3103430666196]": {
+ "Id": "Entity_[3103430666196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3107725633492]": {
+ "Id": "Entity_[3107725633492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3112020600788]": {
+ "Id": "Entity_[3112020600788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3116315568084]": {
+ "Id": "Entity_[3116315568084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3120610535380]": {
+ "Id": "Entity_[3120610535380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3124905502676]": {
+ "Id": "Entity_[3124905502676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3129200469972]": {
+ "Id": "Entity_[3129200469972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3133495437268]": {
+ "Id": "Entity_[3133495437268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3137790404564]": {
+ "Id": "Entity_[3137790404564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3142085371860]": {
+ "Id": "Entity_[3142085371860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3146380339156]": {
+ "Id": "Entity_[3146380339156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3150675306452]": {
+ "Id": "Entity_[3150675306452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3154970273748]": {
+ "Id": "Entity_[3154970273748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3159265241044]": {
+ "Id": "Entity_[3159265241044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3163560208340]": {
+ "Id": "Entity_[3163560208340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3167855175636]": {
+ "Id": "Entity_[3167855175636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3172150142932]": {
+ "Id": "Entity_[3172150142932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3176445110228]": {
+ "Id": "Entity_[3176445110228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3180740077524]": {
+ "Id": "Entity_[3180740077524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3185035044820]": {
+ "Id": "Entity_[3185035044820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3189330012116]": {
+ "Id": "Entity_[3189330012116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3193624979412]": {
+ "Id": "Entity_[3193624979412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3197919946708]": {
+ "Id": "Entity_[3197919946708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3202214914004]": {
+ "Id": "Entity_[3202214914004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3206509881300]": {
+ "Id": "Entity_[3206509881300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3210804848596]": {
+ "Id": "Entity_[3210804848596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3215099815892]": {
+ "Id": "Entity_[3215099815892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3219394783188]": {
+ "Id": "Entity_[3219394783188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3223689750484]": {
+ "Id": "Entity_[3223689750484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3227984717780]": {
+ "Id": "Entity_[3227984717780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3232279685076]": {
+ "Id": "Entity_[3232279685076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3236574652372]": {
+ "Id": "Entity_[3236574652372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3240869619668]": {
+ "Id": "Entity_[3240869619668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3245164586964]": {
+ "Id": "Entity_[3245164586964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3249459554260]": {
+ "Id": "Entity_[3249459554260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3253754521556]": {
+ "Id": "Entity_[3253754521556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3258049488852]": {
+ "Id": "Entity_[3258049488852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3262344456148]": {
+ "Id": "Entity_[3262344456148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3266639423444]": {
+ "Id": "Entity_[3266639423444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3270934390740]": {
+ "Id": "Entity_[3270934390740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3275229358036]": {
+ "Id": "Entity_[3275229358036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3279524325332]": {
+ "Id": "Entity_[3279524325332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3283819292628]": {
+ "Id": "Entity_[3283819292628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3288114259924]": {
+ "Id": "Entity_[3288114259924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3292409227220]": {
+ "Id": "Entity_[3292409227220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3296704194516]": {
+ "Id": "Entity_[3296704194516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3300999161812]": {
+ "Id": "Entity_[3300999161812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3305294129108]": {
+ "Id": "Entity_[3305294129108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3309589096404]": {
+ "Id": "Entity_[3309589096404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3313884063700]": {
+ "Id": "Entity_[3313884063700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3318179030996]": {
+ "Id": "Entity_[3318179030996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3322473998292]": {
+ "Id": "Entity_[3322473998292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3326768965588]": {
+ "Id": "Entity_[3326768965588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3331063932884]": {
+ "Id": "Entity_[3331063932884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3335358900180]": {
+ "Id": "Entity_[3335358900180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3339653867476]": {
+ "Id": "Entity_[3339653867476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3343948834772]": {
+ "Id": "Entity_[3343948834772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3348243802068]": {
+ "Id": "Entity_[3348243802068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3352538769364]": {
+ "Id": "Entity_[3352538769364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3356833736660]": {
+ "Id": "Entity_[3356833736660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3361128703956]": {
+ "Id": "Entity_[3361128703956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3365423671252]": {
+ "Id": "Entity_[3365423671252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3369718638548]": {
+ "Id": "Entity_[3369718638548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3374013605844]": {
+ "Id": "Entity_[3374013605844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3378308573140]": {
+ "Id": "Entity_[3378308573140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3382603540436]": {
+ "Id": "Entity_[3382603540436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3386898507732]": {
+ "Id": "Entity_[3386898507732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3391193475028]": {
+ "Id": "Entity_[3391193475028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3395488442324]": {
+ "Id": "Entity_[3395488442324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3399783409620]": {
+ "Id": "Entity_[3399783409620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3404078376916]": {
+ "Id": "Entity_[3404078376916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3408373344212]": {
+ "Id": "Entity_[3408373344212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3412668311508]": {
+ "Id": "Entity_[3412668311508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3416963278804]": {
+ "Id": "Entity_[3416963278804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3421258246100]": {
+ "Id": "Entity_[3421258246100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3425553213396]": {
+ "Id": "Entity_[3425553213396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3429848180692]": {
+ "Id": "Entity_[3429848180692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3434143147988]": {
+ "Id": "Entity_[3434143147988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3438438115284]": {
+ "Id": "Entity_[3438438115284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3442733082580]": {
+ "Id": "Entity_[3442733082580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3447028049876]": {
+ "Id": "Entity_[3447028049876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3451323017172]": {
+ "Id": "Entity_[3451323017172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3455617984468]": {
+ "Id": "Entity_[3455617984468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3459912951764]": {
+ "Id": "Entity_[3459912951764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3464207919060]": {
+ "Id": "Entity_[3464207919060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3468502886356]": {
+ "Id": "Entity_[3468502886356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3472797853652]": {
+ "Id": "Entity_[3472797853652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3477092820948]": {
+ "Id": "Entity_[3477092820948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3481387788244]": {
+ "Id": "Entity_[3481387788244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3485682755540]": {
+ "Id": "Entity_[3485682755540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3489977722836]": {
+ "Id": "Entity_[3489977722836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3494272690132]": {
+ "Id": "Entity_[3494272690132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3498567657428]": {
+ "Id": "Entity_[3498567657428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3502862624724]": {
+ "Id": "Entity_[3502862624724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3507157592020]": {
+ "Id": "Entity_[3507157592020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3511452559316]": {
+ "Id": "Entity_[3511452559316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3515747526612]": {
+ "Id": "Entity_[3515747526612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3520042493908]": {
+ "Id": "Entity_[3520042493908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 84.44650268554688
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3524337461204]": {
+ "Id": "Entity_[3524337461204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3528632428500]": {
+ "Id": "Entity_[3528632428500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3532927395796]": {
+ "Id": "Entity_[3532927395796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3537222363092]": {
+ "Id": "Entity_[3537222363092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3541517330388]": {
+ "Id": "Entity_[3541517330388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3545812297684]": {
+ "Id": "Entity_[3545812297684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3550107264980]": {
+ "Id": "Entity_[3550107264980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3554402232276]": {
+ "Id": "Entity_[3554402232276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3558697199572]": {
+ "Id": "Entity_[3558697199572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3562992166868]": {
+ "Id": "Entity_[3562992166868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3567287134164]": {
+ "Id": "Entity_[3567287134164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3571582101460]": {
+ "Id": "Entity_[3571582101460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3575877068756]": {
+ "Id": "Entity_[3575877068756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3580172036052]": {
+ "Id": "Entity_[3580172036052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3584467003348]": {
+ "Id": "Entity_[3584467003348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3588761970644]": {
+ "Id": "Entity_[3588761970644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3593056937940]": {
+ "Id": "Entity_[3593056937940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3597351905236]": {
+ "Id": "Entity_[3597351905236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3601646872532]": {
+ "Id": "Entity_[3601646872532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3605941839828]": {
+ "Id": "Entity_[3605941839828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3610236807124]": {
+ "Id": "Entity_[3610236807124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3614531774420]": {
+ "Id": "Entity_[3614531774420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3618826741716]": {
+ "Id": "Entity_[3618826741716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3623121709012]": {
+ "Id": "Entity_[3623121709012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3627416676308]": {
+ "Id": "Entity_[3627416676308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3631711643604]": {
+ "Id": "Entity_[3631711643604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3636006610900]": {
+ "Id": "Entity_[3636006610900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3640301578196]": {
+ "Id": "Entity_[3640301578196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3644596545492]": {
+ "Id": "Entity_[3644596545492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3648891512788]": {
+ "Id": "Entity_[3648891512788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3653186480084]": {
+ "Id": "Entity_[3653186480084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3657481447380]": {
+ "Id": "Entity_[3657481447380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3661776414676]": {
+ "Id": "Entity_[3661776414676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3666071381972]": {
+ "Id": "Entity_[3666071381972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3670366349268]": {
+ "Id": "Entity_[3670366349268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3674661316564]": {
+ "Id": "Entity_[3674661316564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3678956283860]": {
+ "Id": "Entity_[3678956283860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3683251251156]": {
+ "Id": "Entity_[3683251251156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3687546218452]": {
+ "Id": "Entity_[3687546218452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3691841185748]": {
+ "Id": "Entity_[3691841185748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3696136153044]": {
+ "Id": "Entity_[3696136153044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3700431120340]": {
+ "Id": "Entity_[3700431120340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3704726087636]": {
+ "Id": "Entity_[3704726087636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3709021054932]": {
+ "Id": "Entity_[3709021054932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3713316022228]": {
+ "Id": "Entity_[3713316022228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3717610989524]": {
+ "Id": "Entity_[3717610989524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3721905956820]": {
+ "Id": "Entity_[3721905956820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3726200924116]": {
+ "Id": "Entity_[3726200924116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3730495891412]": {
+ "Id": "Entity_[3730495891412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3734790858708]": {
+ "Id": "Entity_[3734790858708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3739085826004]": {
+ "Id": "Entity_[3739085826004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3743380793300]": {
+ "Id": "Entity_[3743380793300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3747675760596]": {
+ "Id": "Entity_[3747675760596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3751970727892]": {
+ "Id": "Entity_[3751970727892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3756265695188]": {
+ "Id": "Entity_[3756265695188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3760560662484]": {
+ "Id": "Entity_[3760560662484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3764855629780]": {
+ "Id": "Entity_[3764855629780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3769150597076]": {
+ "Id": "Entity_[3769150597076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3773445564372]": {
+ "Id": "Entity_[3773445564372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3777740531668]": {
+ "Id": "Entity_[3777740531668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3782035498964]": {
+ "Id": "Entity_[3782035498964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3786330466260]": {
+ "Id": "Entity_[3786330466260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3790625433556]": {
+ "Id": "Entity_[3790625433556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3794920400852]": {
+ "Id": "Entity_[3794920400852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3799215368148]": {
+ "Id": "Entity_[3799215368148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3803510335444]": {
+ "Id": "Entity_[3803510335444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3807805302740]": {
+ "Id": "Entity_[3807805302740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3812100270036]": {
+ "Id": "Entity_[3812100270036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3816395237332]": {
+ "Id": "Entity_[3816395237332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 9.51578426361084
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3820690204628]": {
+ "Id": "Entity_[3820690204628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3824985171924]": {
+ "Id": "Entity_[3824985171924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3829280139220]": {
+ "Id": "Entity_[3829280139220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3833575106516]": {
+ "Id": "Entity_[3833575106516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3837870073812]": {
+ "Id": "Entity_[3837870073812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3842165041108]": {
+ "Id": "Entity_[3842165041108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3846460008404]": {
+ "Id": "Entity_[3846460008404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3850754975700]": {
+ "Id": "Entity_[3850754975700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3855049942996]": {
+ "Id": "Entity_[3855049942996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3859344910292]": {
+ "Id": "Entity_[3859344910292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3863639877588]": {
+ "Id": "Entity_[3863639877588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3867934844884]": {
+ "Id": "Entity_[3867934844884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3872229812180]": {
+ "Id": "Entity_[3872229812180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3876524779476]": {
+ "Id": "Entity_[3876524779476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3880819746772]": {
+ "Id": "Entity_[3880819746772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3885114714068]": {
+ "Id": "Entity_[3885114714068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3889409681364]": {
+ "Id": "Entity_[3889409681364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3893704648660]": {
+ "Id": "Entity_[3893704648660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3897999615956]": {
+ "Id": "Entity_[3897999615956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3902294583252]": {
+ "Id": "Entity_[3902294583252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3906589550548]": {
+ "Id": "Entity_[3906589550548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3910884517844]": {
+ "Id": "Entity_[3910884517844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3915179485140]": {
+ "Id": "Entity_[3915179485140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3919474452436]": {
+ "Id": "Entity_[3919474452436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3923769419732]": {
+ "Id": "Entity_[3923769419732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3928064387028]": {
+ "Id": "Entity_[3928064387028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3932359354324]": {
+ "Id": "Entity_[3932359354324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3936654321620]": {
+ "Id": "Entity_[3936654321620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3940949288916]": {
+ "Id": "Entity_[3940949288916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3945244256212]": {
+ "Id": "Entity_[3945244256212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3949539223508]": {
+ "Id": "Entity_[3949539223508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 24.573455810546875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3953834190804]": {
+ "Id": "Entity_[3953834190804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3958129158100]": {
+ "Id": "Entity_[3958129158100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3962424125396]": {
+ "Id": "Entity_[3962424125396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3966719092692]": {
+ "Id": "Entity_[3966719092692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3971014059988]": {
+ "Id": "Entity_[3971014059988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3975309027284]": {
+ "Id": "Entity_[3975309027284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3979603994580]": {
+ "Id": "Entity_[3979603994580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3983898961876]": {
+ "Id": "Entity_[3983898961876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3988193929172]": {
+ "Id": "Entity_[3988193929172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3992488896468]": {
+ "Id": "Entity_[3992488896468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E56377B1-6310-5311-A494-135BE50B74F0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[3996783863764]": {
+ "Id": "Entity_[3996783863764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4001078831060]": {
+ "Id": "Entity_[4001078831060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4005373798356]": {
+ "Id": "Entity_[4005373798356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4009668765652]": {
+ "Id": "Entity_[4009668765652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4013963732948]": {
+ "Id": "Entity_[4013963732948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4018258700244]": {
+ "Id": "Entity_[4018258700244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4022553667540]": {
+ "Id": "Entity_[4022553667540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4026848634836]": {
+ "Id": "Entity_[4026848634836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4031143602132]": {
+ "Id": "Entity_[4031143602132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4035438569428]": {
+ "Id": "Entity_[4035438569428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4039733536724]": {
+ "Id": "Entity_[4039733536724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4044028504020]": {
+ "Id": "Entity_[4044028504020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4048323471316]": {
+ "Id": "Entity_[4048323471316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4052618438612]": {
+ "Id": "Entity_[4052618438612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4056913405908]": {
+ "Id": "Entity_[4056913405908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4061208373204]": {
+ "Id": "Entity_[4061208373204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4065503340500]": {
+ "Id": "Entity_[4065503340500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4069798307796]": {
+ "Id": "Entity_[4069798307796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4074093275092]": {
+ "Id": "Entity_[4074093275092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4078388242388]": {
+ "Id": "Entity_[4078388242388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 39.60029602050781
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4082683209684]": {
+ "Id": "Entity_[4082683209684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4086978176980]": {
+ "Id": "Entity_[4086978176980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4091273144276]": {
+ "Id": "Entity_[4091273144276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 39.60029602050781
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4095568111572]": {
+ "Id": "Entity_[4095568111572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4099863078868]": {
+ "Id": "Entity_[4099863078868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4104158046164]": {
+ "Id": "Entity_[4104158046164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4108453013460]": {
+ "Id": "Entity_[4108453013460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 84.44650268554688
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4112747980756]": {
+ "Id": "Entity_[4112747980756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4117042948052]": {
+ "Id": "Entity_[4117042948052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4121337915348]": {
+ "Id": "Entity_[4121337915348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4125632882644]": {
+ "Id": "Entity_[4125632882644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4129927849940]": {
+ "Id": "Entity_[4129927849940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4134222817236]": {
+ "Id": "Entity_[4134222817236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4138517784532]": {
+ "Id": "Entity_[4138517784532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4142812751828]": {
+ "Id": "Entity_[4142812751828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4147107719124]": {
+ "Id": "Entity_[4147107719124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4151402686420]": {
+ "Id": "Entity_[4151402686420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4155697653716]": {
+ "Id": "Entity_[4155697653716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4159992621012]": {
+ "Id": "Entity_[4159992621012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4164287588308]": {
+ "Id": "Entity_[4164287588308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4168582555604]": {
+ "Id": "Entity_[4168582555604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4172877522900]": {
+ "Id": "Entity_[4172877522900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4177172490196]": {
+ "Id": "Entity_[4177172490196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4181467457492]": {
+ "Id": "Entity_[4181467457492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4185762424788]": {
+ "Id": "Entity_[4185762424788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4190057392084]": {
+ "Id": "Entity_[4190057392084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4194352359380]": {
+ "Id": "Entity_[4194352359380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4198647326676]": {
+ "Id": "Entity_[4198647326676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4202942293972]": {
+ "Id": "Entity_[4202942293972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4207237261268]": {
+ "Id": "Entity_[4207237261268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4211532228564]": {
+ "Id": "Entity_[4211532228564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4215827195860]": {
+ "Id": "Entity_[4215827195860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4220122163156]": {
+ "Id": "Entity_[4220122163156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4224417130452]": {
+ "Id": "Entity_[4224417130452]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4228712097748]": {
+ "Id": "Entity_[4228712097748]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4233007065044]": {
+ "Id": "Entity_[4233007065044]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4237302032340]": {
+ "Id": "Entity_[4237302032340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4241596999636]": {
+ "Id": "Entity_[4241596999636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4245891966932]": {
+ "Id": "Entity_[4245891966932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4250186934228]": {
+ "Id": "Entity_[4250186934228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4254481901524]": {
+ "Id": "Entity_[4254481901524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4258776868820]": {
+ "Id": "Entity_[4258776868820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4263071836116]": {
+ "Id": "Entity_[4263071836116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4267366803412]": {
+ "Id": "Entity_[4267366803412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4271661770708]": {
+ "Id": "Entity_[4271661770708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4275956738004]": {
+ "Id": "Entity_[4275956738004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4280251705300]": {
+ "Id": "Entity_[4280251705300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4284546672596]": {
+ "Id": "Entity_[4284546672596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4288841639892]": {
+ "Id": "Entity_[4288841639892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4293136607188]": {
+ "Id": "Entity_[4293136607188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4297431574484]": {
+ "Id": "Entity_[4297431574484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4301726541780]": {
+ "Id": "Entity_[4301726541780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4306021509076]": {
+ "Id": "Entity_[4306021509076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4310316476372]": {
+ "Id": "Entity_[4310316476372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4314611443668]": {
+ "Id": "Entity_[4314611443668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4318906410964]": {
+ "Id": "Entity_[4318906410964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4323201378260]": {
+ "Id": "Entity_[4323201378260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4327496345556]": {
+ "Id": "Entity_[4327496345556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4331791312852]": {
+ "Id": "Entity_[4331791312852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4336086280148]": {
+ "Id": "Entity_[4336086280148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4340381247444]": {
+ "Id": "Entity_[4340381247444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4344676214740]": {
+ "Id": "Entity_[4344676214740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4348971182036]": {
+ "Id": "Entity_[4348971182036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4353266149332]": {
+ "Id": "Entity_[4353266149332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4357561116628]": {
+ "Id": "Entity_[4357561116628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4361856083924]": {
+ "Id": "Entity_[4361856083924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4366151051220]": {
+ "Id": "Entity_[4366151051220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4370446018516]": {
+ "Id": "Entity_[4370446018516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4374740985812]": {
+ "Id": "Entity_[4374740985812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4379035953108]": {
+ "Id": "Entity_[4379035953108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4383330920404]": {
+ "Id": "Entity_[4383330920404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4387625887700]": {
+ "Id": "Entity_[4387625887700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4391920854996]": {
+ "Id": "Entity_[4391920854996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4396215822292]": {
+ "Id": "Entity_[4396215822292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4400510789588]": {
+ "Id": "Entity_[4400510789588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4404805756884]": {
+ "Id": "Entity_[4404805756884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4409100724180]": {
+ "Id": "Entity_[4409100724180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4413395691476]": {
+ "Id": "Entity_[4413395691476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4417690658772]": {
+ "Id": "Entity_[4417690658772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4421985626068]": {
+ "Id": "Entity_[4421985626068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4426280593364]": {
+ "Id": "Entity_[4426280593364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4430575560660]": {
+ "Id": "Entity_[4430575560660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4434870527956]": {
+ "Id": "Entity_[4434870527956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4439165495252]": {
+ "Id": "Entity_[4439165495252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4443460462548]": {
+ "Id": "Entity_[4443460462548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4447755429844]": {
+ "Id": "Entity_[4447755429844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4452050397140]": {
+ "Id": "Entity_[4452050397140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4456345364436]": {
+ "Id": "Entity_[4456345364436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4460640331732]": {
+ "Id": "Entity_[4460640331732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4464935299028]": {
+ "Id": "Entity_[4464935299028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4469230266324]": {
+ "Id": "Entity_[4469230266324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4473525233620]": {
+ "Id": "Entity_[4473525233620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4477820200916]": {
+ "Id": "Entity_[4477820200916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4482115168212]": {
+ "Id": "Entity_[4482115168212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4486410135508]": {
+ "Id": "Entity_[4486410135508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4490705102804]": {
+ "Id": "Entity_[4490705102804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4495000070100]": {
+ "Id": "Entity_[4495000070100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4499295037396]": {
+ "Id": "Entity_[4499295037396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4503590004692]": {
+ "Id": "Entity_[4503590004692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CDA13277-5EAB-5E2A-93F5-B7003597FBCE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4507884971988]": {
+ "Id": "Entity_[4507884971988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4512179939284]": {
+ "Id": "Entity_[4512179939284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4516474906580]": {
+ "Id": "Entity_[4516474906580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4520769873876]": {
+ "Id": "Entity_[4520769873876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4525064841172]": {
+ "Id": "Entity_[4525064841172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4529359808468]": {
+ "Id": "Entity_[4529359808468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4533654775764]": {
+ "Id": "Entity_[4533654775764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4537949743060]": {
+ "Id": "Entity_[4537949743060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4542244710356]": {
+ "Id": "Entity_[4542244710356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4546539677652]": {
+ "Id": "Entity_[4546539677652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4550834644948]": {
+ "Id": "Entity_[4550834644948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4555129612244]": {
+ "Id": "Entity_[4555129612244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4559424579540]": {
+ "Id": "Entity_[4559424579540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4563719546836]": {
+ "Id": "Entity_[4563719546836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4568014514132]": {
+ "Id": "Entity_[4568014514132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{80E0F2A7-1EE4-597F-80EF-985C65BCE2EB}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4572309481428]": {
+ "Id": "Entity_[4572309481428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4576604448724]": {
+ "Id": "Entity_[4576604448724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4580899416020]": {
+ "Id": "Entity_[4580899416020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4585194383316]": {
+ "Id": "Entity_[4585194383316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4589489350612]": {
+ "Id": "Entity_[4589489350612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4593784317908]": {
+ "Id": "Entity_[4593784317908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[4598079285204]": {
+ "Id": "Entity_[4598079285204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[479205648340]": {
+ "Id": "Entity_[479205648340]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[483500615636]": {
+ "Id": "Entity_[483500615636]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[487795582932]": {
+ "Id": "Entity_[487795582932]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[492090550228]": {
+ "Id": "Entity_[492090550228]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[496385517524]": {
+ "Id": "Entity_[496385517524]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[500680484820]": {
+ "Id": "Entity_[500680484820]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[504975452116]": {
+ "Id": "Entity_[504975452116]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[509270419412]": {
+ "Id": "Entity_[509270419412]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[513565386708]": {
+ "Id": "Entity_[513565386708]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{5BC13D95-377E-53EA-9A93-156384BE8B04}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[517860354004]": {
+ "Id": "Entity_[517860354004]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[522155321300]": {
+ "Id": "Entity_[522155321300]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E23FC75B-4142-55F1-B9AE-884826E7EB23}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[526450288596]": {
+ "Id": "Entity_[526450288596]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[530745255892]": {
+ "Id": "Entity_[530745255892]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[535040223188]": {
+ "Id": "Entity_[535040223188]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[539335190484]": {
+ "Id": "Entity_[539335190484]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[543630157780]": {
+ "Id": "Entity_[543630157780]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[547925125076]": {
+ "Id": "Entity_[547925125076]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[552220092372]": {
+ "Id": "Entity_[552220092372]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[556515059668]": {
+ "Id": "Entity_[556515059668]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[560810026964]": {
+ "Id": "Entity_[560810026964]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[565104994260]": {
+ "Id": "Entity_[565104994260]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[569399961556]": {
+ "Id": "Entity_[569399961556]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[573694928852]": {
+ "Id": "Entity_[573694928852]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[577989896148]": {
+ "Id": "Entity_[577989896148]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[582284863444]": {
+ "Id": "Entity_[582284863444]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[586579830740]": {
+ "Id": "Entity_[586579830740]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[590874798036]": {
+ "Id": "Entity_[590874798036]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[595169765332]": {
+ "Id": "Entity_[595169765332]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[599464732628]": {
+ "Id": "Entity_[599464732628]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[603759699924]": {
+ "Id": "Entity_[603759699924]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[608054667220]": {
+ "Id": "Entity_[608054667220]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DC0598ED-1EDD-5B37-892E-E0867621D74C}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[612349634516]": {
+ "Id": "Entity_[612349634516]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[616644601812]": {
+ "Id": "Entity_[616644601812]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[620939569108]": {
+ "Id": "Entity_[620939569108]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[625234536404]": {
+ "Id": "Entity_[625234536404]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[629529503700]": {
+ "Id": "Entity_[629529503700]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[633824470996]": {
+ "Id": "Entity_[633824470996]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[638119438292]": {
+ "Id": "Entity_[638119438292]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[642414405588]": {
+ "Id": "Entity_[642414405588]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[646709372884]": {
+ "Id": "Entity_[646709372884]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[651004340180]": {
+ "Id": "Entity_[651004340180]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[655299307476]": {
+ "Id": "Entity_[655299307476]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[659594274772]": {
+ "Id": "Entity_[659594274772]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[663889242068]": {
+ "Id": "Entity_[663889242068]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[668184209364]": {
+ "Id": "Entity_[668184209364]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[672479176660]": {
+ "Id": "Entity_[672479176660]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[676774143956]": {
+ "Id": "Entity_[676774143956]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[681069111252]": {
+ "Id": "Entity_[681069111252]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[685364078548]": {
+ "Id": "Entity_[685364078548]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[689659045844]": {
+ "Id": "Entity_[689659045844]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[693954013140]": {
+ "Id": "Entity_[693954013140]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 9.51578426361084
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[698248980436]": {
+ "Id": "Entity_[698248980436]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[702543947732]": {
+ "Id": "Entity_[702543947732]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[706838915028]": {
+ "Id": "Entity_[706838915028]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 74.93071746826172
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[711133882324]": {
+ "Id": "Entity_[711133882324]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[715428849620]": {
+ "Id": "Entity_[715428849620]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[719723816916]": {
+ "Id": "Entity_[719723816916]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[724018784212]": {
+ "Id": "Entity_[724018784212]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[728313751508]": {
+ "Id": "Entity_[728313751508]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E54E46E7-9FA3-54D7-B5F8-8DCCDF17BC24}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[732608718804]": {
+ "Id": "Entity_[732608718804]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[736903686100]": {
+ "Id": "Entity_[736903686100]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[741198653396]": {
+ "Id": "Entity_[741198653396]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A3F3CD98-1634-5542-AD5A-78E91BE21AE9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[745493620692]": {
+ "Id": "Entity_[745493620692]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[749788587988]": {
+ "Id": "Entity_[749788587988]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[754083555284]": {
+ "Id": "Entity_[754083555284]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[758378522580]": {
+ "Id": "Entity_[758378522580]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[762673489876]": {
+ "Id": "Entity_[762673489876]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[766968457172]": {
+ "Id": "Entity_[766968457172]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[771263424468]": {
+ "Id": "Entity_[771263424468]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[775558391764]": {
+ "Id": "Entity_[775558391764]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[779853359060]": {
+ "Id": "Entity_[779853359060]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[784148326356]": {
+ "Id": "Entity_[784148326356]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[788443293652]": {
+ "Id": "Entity_[788443293652]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[792738260948]": {
+ "Id": "Entity_[792738260948]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 39.56034851074219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[797033228244]": {
+ "Id": "Entity_[797033228244]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 114.53101348876953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[801328195540]": {
+ "Id": "Entity_[801328195540]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 22.53014373779297,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[805623162836]": {
+ "Id": "Entity_[805623162836]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[809918130132]": {
+ "Id": "Entity_[809918130132]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[814213097428]": {
+ "Id": "Entity_[814213097428]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{60D4CA04-A2FE-5AE7-B472-694C38D05183}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[818508064724]": {
+ "Id": "Entity_[818508064724]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[822803032020]": {
+ "Id": "Entity_[822803032020]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -42.53056335449219,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{AE350D9F-0000-526D-B49C-4303D687BB86}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[827097999316]": {
+ "Id": "Entity_[827097999316]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[831392966612]": {
+ "Id": "Entity_[831392966612]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[835687933908]": {
+ "Id": "Entity_[835687933908]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 79.38228607177734
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[839982901204]": {
+ "Id": "Entity_[839982901204]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 45.14218521118164
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[844277868500]": {
+ "Id": "Entity_[844277868500]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 84.40655517578125
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[848572835796]": {
+ "Id": "Entity_[848572835796]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[852867803092]": {
+ "Id": "Entity_[852867803092]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[1057179753323467068]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1057179753323467068,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1057179753323467068,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 12.530143737792969,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[857162770388]": {
+ "Id": "Entity_[857162770388]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[861457737684]": {
+ "Id": "Entity_[861457737684]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 2.5301437377929688,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[865752704980]": {
+ "Id": "Entity_[865752704980]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[870047672276]": {
+ "Id": "Entity_[870047672276]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -37.53056335449219,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{B7C712DC-4839-58BB-B522-A4F120084CF5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[874342639572]": {
+ "Id": "Entity_[874342639572]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 4.451573371887207
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[878637606868]": {
+ "Id": "Entity_[878637606868]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 89.95755767822266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[882932574164]": {
+ "Id": "Entity_[882932574164]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{94CF2BD7-7D09-5577-B1D8-3FF85B15E127}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[887227541460]": {
+ "Id": "Entity_[887227541460]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 69.34888458251953
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[891522508756]": {
+ "Id": "Entity_[891522508756]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 0.0
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[895817476052]": {
+ "Id": "Entity_[895817476052]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[900112443348]": {
+ "Id": "Entity_[900112443348]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 34.53608703613281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[904407410644]": {
+ "Id": "Entity_[904407410644]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{C60A39AF-BB76-51BD-9468-A88C9A6F78D7}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[908702377940]": {
+ "Id": "Entity_[908702377940]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[912997345236]": {
+ "Id": "Entity_[912997345236]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[917292312532]": {
+ "Id": "Entity_[917292312532]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 94.40913391113281
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[921587279828]": {
+ "Id": "Entity_[921587279828]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -27.530563354492188,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[925882247124]": {
+ "Id": "Entity_[925882247124]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 17.53014373779297,
+ -0.00018183141946792603,
+ 15.057670593261719
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {},
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{721188E0-B7CC-5D06-8D5D-39AF8ABF2EF9}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium.azmaterial"
+ }
+ }
+ },
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[930177214420]": {
+ "Id": "Entity_[930177214420]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -7.5305633544921875,
+ -0.00018183141946792603,
+ 9.475835800170898
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{DD1E26AE-80FB-5DB6-8786-26D438190A38}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[934472181716]": {
+ "Id": "Entity_[934472181716]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 47.53014373779297,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[938767149012]": {
+ "Id": "Entity_[938767149012]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 32.53014373779297,
+ -0.00018183141946792603,
+ 24.533506393432617
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[943062116308]": {
+ "Id": "Entity_[943062116308]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -22.530563354492188,
+ -0.00018183141946792603,
+ 30.08451271057129
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[947357083604]": {
+ "Id": "Entity_[947357083604]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 7.530143737792969,
+ -0.00018183141946792603,
+ 105.0152359008789
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[951652050900]": {
+ "Id": "Entity_[951652050900]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -32.53056335449219,
+ -0.00018183141946792603,
+ 114.4910659790039
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{99976D73-6248-5D66-AD15-E8F52B0AFE36}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[955947018196]": {
+ "Id": "Entity_[955947018196]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{970148AC-7258-5EC8-9CE7-F4EF93164D93}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[960241985492]": {
+ "Id": "Entity_[960241985492]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[964536952788]": {
+ "Id": "Entity_[964536952788]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -2.5305633544921875,
+ -0.00018183141946792603,
+ 19.50924301147461
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{9187B84B-425F-5D11-B4D7-35BBDB0959D1}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[968831920084]": {
+ "Id": "Entity_[968831920084]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 27.53014373779297,
+ -0.00018183141946792603,
+ 64.32462310791016
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A78EA2FC-688B-5E3A-A7F6-DB413D11D4CF}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[973126887380]": {
+ "Id": "Entity_[973126887380]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ -0.00018183141946792603,
+ 109.46680450439453
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2D054071-BEF7-53C0-A8C9-E4F026BD8364}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[977421854676]": {
+ "Id": "Entity_[977421854676]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 69.38883209228516
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[981716821972]": {
+ "Id": "Entity_[981716821972]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 42.53014373779297,
+ -0.00018183141946792603,
+ 99.43339538574219
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FE52E7C8-064D-506A-9C26-433EB93747DE}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[986011789268]": {
+ "Id": "Entity_[986011789268]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ 37.53014373779297,
+ 0.010651908814907074,
+ 99.47334289550781
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E621C5BF-B8E1-55F0-A791-EC960F2FA46F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[990306756564]": {
+ "Id": "Entity_[990306756564]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -47.53056335449219,
+ -0.00018183141946792603,
+ 49.593753814697266
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{549D26B8-881D-569F-AF05-961F36A43F4F}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_matte.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[994601723860]": {
+ "Id": "Entity_[994601723860]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -17.530563354492188,
+ -0.00018183141946792603,
+ 54.618019104003906
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{892EA944-0325-5FA6-94D7-4AB4FC02A0F5}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ },
+ "Entity_[998896691156]": {
+ "Id": "Entity_[998896691156]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11525365929370623807]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11525365929370623807
+ },
+ "Component_[12334620273692642550]": {
+ "$type": "EditorLockComponent",
+ "Id": 12334620273692642550
+ },
+ "Component_[14389735759337977675]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14389735759337977675
+ },
+ "Component_[16184381538555246534]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 16184381538555246534,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[17962478023087084794]": {
+ "$type": "SelectionComponent",
+ "Id": 17962478023087084794
+ },
+ "Component_[18071675051915092508]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 18071675051915092508
+ },
+ "Component_[2115498007879087044]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2115498007879087044,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 399415038452606756
+ },
+ {
+ "ComponentId": 16184381538555246534,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 7827190074535394331,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[3518973002096080237]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3518973002096080237
+ },
+ "Component_[399415038452606756]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 399415038452606756,
+ "Parent Entity": "ContainerEntity",
+ "Transform Data": {
+ "Translate": [
+ -12.530563354492188,
+ -0.00018183141946792603,
+ 59.873046875
+ ]
+ }
+ },
+ "Component_[4564240319609068082]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4564240319609068082
+ },
+ "Component_[7827190074535394331]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 7827190074535394331,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[8092226976542590265]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8092226976542590265
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeAluminumPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeAluminumPolishedPBR.prefab
new file mode 100644
index 0000000000..afec89bcc0
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeAluminumPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeAluminumPolishedPBR",
+ "Components": {
+ "Component_[1006636009791072742]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 1006636009791072742,
+ "Parent Entity": ""
+ },
+ "Component_[1076262440422199293]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 1076262440422199293,
+ "Child Entity Order": [
+ "Entity_[1040185651401]"
+ ]
+ },
+ "Component_[10918235158079012184]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 10918235158079012184
+ },
+ "Component_[14325323304581185195]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 14325323304581185195
+ },
+ "Component_[15952647410502679667]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 15952647410502679667
+ },
+ "Component_[1646402264018781142]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 1646402264018781142
+ },
+ "Component_[2017972571432187012]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2017972571432187012
+ },
+ "Component_[478000835478069459]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 478000835478069459
+ },
+ "Component_[7132130710158542124]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7132130710158542124
+ },
+ "Component_[7457311619910333402]": {
+ "$type": "SelectionComponent",
+ "Id": 7457311619910333402
+ },
+ "Component_[8761313808145525748]": {
+ "$type": "EditorLockComponent",
+ "Id": 8761313808145525748
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1040185651401]": {
+ "Id": "Entity_[1040185651401]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{64C1F6A6-6BDA-551A-BE56-1829E5913278}"
+ },
+ "assetHint": "materials/presets/pbr/metal_aluminum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeBrassPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeBrassPolishedPBR.prefab
new file mode 100644
index 0000000000..beca9c9dba
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeBrassPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeBrassPolishedPBR",
+ "Components": {
+ "Component_[11392538078593907718]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11392538078593907718
+ },
+ "Component_[15271285664593091377]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 15271285664593091377
+ },
+ "Component_[16445950008096288691]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16445950008096288691
+ },
+ "Component_[17031759897155285515]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17031759897155285515
+ },
+ "Component_[17333992135029064645]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 17333992135029064645,
+ "Parent Entity": ""
+ },
+ "Component_[2440848159410013062]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2440848159410013062
+ },
+ "Component_[4872690920600271776]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4872690920600271776
+ },
+ "Component_[8105157811055641931]": {
+ "$type": "SelectionComponent",
+ "Id": 8105157811055641931
+ },
+ "Component_[8121804356127130254]": {
+ "$type": "EditorLockComponent",
+ "Id": 8121804356127130254
+ },
+ "Component_[9156467458085058309]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 9156467458085058309
+ },
+ "Component_[998572165026441124]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 998572165026441124,
+ "Child Entity Order": [
+ "Entity_[1169034670281]"
+ ]
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1169034670281]": {
+ "Id": "Entity_[1169034670281]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FC69F2F8-F73B-5A0C-B8B7-94BAA45780FC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_brass_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeChromePolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeChromePolishedPBR.prefab
new file mode 100644
index 0000000000..6f933ad666
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeChromePolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeChromePolishedPBR",
+ "Components": {
+ "Component_[10194322458002226643]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10194322458002226643
+ },
+ "Component_[12036481316264753863]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12036481316264753863
+ },
+ "Component_[12378089635489881977]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 12378089635489881977
+ },
+ "Component_[14430665156325163680]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 14430665156325163680
+ },
+ "Component_[15205683346512266293]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15205683346512266293,
+ "Parent Entity": ""
+ },
+ "Component_[16051828087924530008]": {
+ "$type": "EditorLockComponent",
+ "Id": 16051828087924530008
+ },
+ "Component_[3910753277078082783]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 3910753277078082783
+ },
+ "Component_[4999195701117409226]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4999195701117409226
+ },
+ "Component_[5435519106043975119]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5435519106043975119,
+ "Child Entity Order": [
+ "Entity_[1315063558345]"
+ ]
+ },
+ "Component_[6762050164377989214]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 6762050164377989214
+ },
+ "Component_[7395721573111063938]": {
+ "$type": "SelectionComponent",
+ "Id": 7395721573111063938
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1315063558345]": {
+ "Id": "Entity_[1315063558345]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CAF50181-3384-5DF2-9304-C6E48E83C72D}"
+ },
+ "assetHint": "materials/presets/pbr/metal_chrome_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeCobaltPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeCobaltPolishedPBR.prefab
new file mode 100644
index 0000000000..82ed5264dd
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeCobaltPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeCobaltPolishedPBR",
+ "Components": {
+ "Component_[12811832964126776693]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12811832964126776693,
+ "Parent Entity": ""
+ },
+ "Component_[13295886036381057017]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 13295886036381057017
+ },
+ "Component_[13767840970182343359]": {
+ "$type": "SelectionComponent",
+ "Id": 13767840970182343359
+ },
+ "Component_[16269039178417460408]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16269039178417460408
+ },
+ "Component_[16338942903899315753]": {
+ "$type": "EditorLockComponent",
+ "Id": 16338942903899315753
+ },
+ "Component_[16938354010512315058]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 16938354010512315058
+ },
+ "Component_[18087692989611771228]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 18087692989611771228,
+ "Child Entity Order": [
+ "Entity_[1478272315593]"
+ ]
+ },
+ "Component_[2408892657833094901]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2408892657833094901
+ },
+ "Component_[3273159330768091937]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 3273159330768091937
+ },
+ "Component_[8251134042453350781]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8251134042453350781
+ },
+ "Component_[9830348537229676775]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9830348537229676775
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1478272315593]": {
+ "Id": "Entity_[1478272315593]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{93DF55AE-8D1B-5AD1-A609-05F1BD9F6EA0}"
+ },
+ "assetHint": "materials/presets/pbr/metal_cobalt_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeCopperPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeCopperPolishedPBR.prefab
new file mode 100644
index 0000000000..ca6680593b
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeCopperPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeCopperPolishedPBR",
+ "Components": {
+ "Component_[14120317269315619433]": {
+ "$type": "SelectionComponent",
+ "Id": 14120317269315619433
+ },
+ "Component_[143917687187100454]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 143917687187100454
+ },
+ "Component_[15260876699496078513]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 15260876699496078513
+ },
+ "Component_[1746418914802949089]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1746418914802949089
+ },
+ "Component_[18443523081045072277]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 18443523081045072277
+ },
+ "Component_[4010874908443542212]": {
+ "$type": "EditorLockComponent",
+ "Id": 4010874908443542212
+ },
+ "Component_[4271734532103635304]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4271734532103635304
+ },
+ "Component_[4383829137523954163]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4383829137523954163
+ },
+ "Component_[5749675910289562089]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 5749675910289562089,
+ "Parent Entity": ""
+ },
+ "Component_[6232920837132171119]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 6232920837132171119
+ },
+ "Component_[7306146920796854544]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7306146920796854544,
+ "Child Entity Order": [
+ "Entity_[1658660942025]"
+ ]
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1658660942025]": {
+ "Id": "Entity_[1658660942025]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{CF5C7B01-4912-58AE-991A-F25251E505AC}"
+ },
+ "assetHint": "materials/presets/pbr/metal_copper_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeGoldPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeGoldPolishedPBR.prefab
new file mode 100644
index 0000000000..f6b678bb32
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeGoldPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeGoldPolishedPBR",
+ "Components": {
+ "Component_[10011820011377711118]": {
+ "$type": "EditorLockComponent",
+ "Id": 10011820011377711118
+ },
+ "Component_[10068789746496377466]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 10068789746496377466
+ },
+ "Component_[11570676153379582500]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11570676153379582500,
+ "Parent Entity": ""
+ },
+ "Component_[13003038310843603631]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 13003038310843603631
+ },
+ "Component_[15807328745370882636]": {
+ "$type": "SelectionComponent",
+ "Id": 15807328745370882636
+ },
+ "Component_[2750440106393392905]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 2750440106393392905,
+ "Child Entity Order": [
+ "Entity_[1856229437641]"
+ ]
+ },
+ "Component_[2761752922494043610]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 2761752922494043610
+ },
+ "Component_[3027606009106407466]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 3027606009106407466
+ },
+ "Component_[4326682049246572673]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4326682049246572673
+ },
+ "Component_[5821381882600148312]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821381882600148312
+ },
+ "Component_[6068739143830165037]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 6068739143830165037
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[1856229437641]": {
+ "Id": "Entity_[1856229437641]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{FB4657EB-FB3A-5EC3-A772-DC36D6F733C3}"
+ },
+ "assetHint": "materials/presets/pbr/metal_gold_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeIronPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeIronPolishedPBR.prefab
new file mode 100644
index 0000000000..f7118b4084
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeIronPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeIronPolishedPBR",
+ "Components": {
+ "Component_[10744633821142630765]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 10744633821142630765
+ },
+ "Component_[15160812085690623525]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 15160812085690623525
+ },
+ "Component_[17506200912680653288]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 17506200912680653288,
+ "Parent Entity": ""
+ },
+ "Component_[1779514216896114299]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1779514216896114299
+ },
+ "Component_[2089200513910230823]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 2089200513910230823
+ },
+ "Component_[3904312129158421170]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 3904312129158421170
+ },
+ "Component_[5126366677360310098]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5126366677360310098
+ },
+ "Component_[6443652007083636420]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 6443652007083636420,
+ "Child Entity Order": [
+ "Entity_[2070977802441]"
+ ]
+ },
+ "Component_[8531209872369121358]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 8531209872369121358
+ },
+ "Component_[8558242753126803571]": {
+ "$type": "SelectionComponent",
+ "Id": 8558242753126803571
+ },
+ "Component_[8938179055081804896]": {
+ "$type": "EditorLockComponent",
+ "Id": 8938179055081804896
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[2070977802441]": {
+ "Id": "Entity_[2070977802441]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{A7F03135-ECAD-5440-99DB-E84ABA3D50DA}"
+ },
+ "assetHint": "materials/presets/pbr/metal_iron_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeMercuryPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeMercuryPBR.prefab
new file mode 100644
index 0000000000..2977bff25b
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeMercuryPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeMercuryPBR",
+ "Components": {
+ "Component_[11796219437064669544]": {
+ "$type": "SelectionComponent",
+ "Id": 11796219437064669544
+ },
+ "Component_[12551667429170676889]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 12551667429170676889
+ },
+ "Component_[12693460746131498096]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 12693460746131498096
+ },
+ "Component_[14262931207267008977]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 14262931207267008977
+ },
+ "Component_[18045441039226816973]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 18045441039226816973,
+ "Child Entity Order": [
+ "Entity_[928516501705]"
+ ]
+ },
+ "Component_[2268958959705742396]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 2268958959705742396,
+ "Parent Entity": ""
+ },
+ "Component_[3379321424051234761]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 3379321424051234761
+ },
+ "Component_[3967973434353405611]": {
+ "$type": "EditorLockComponent",
+ "Id": 3967973434353405611
+ },
+ "Component_[6260092263143569388]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 6260092263143569388
+ },
+ "Component_[6596926416684557718]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6596926416684557718
+ },
+ "Component_[9068640134216835201]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 9068640134216835201
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[928516501705]": {
+ "Id": "Entity_[928516501705]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{F2AD0EBF-7137-58D1-9991-9552FAD41B19}"
+ },
+ "assetHint": "materials/presets/pbr/metal_mercury.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeNickelPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeNickelPolishedPBR.prefab
new file mode 100644
index 0000000000..22fa0873b1
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeNickelPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeNickelPolishedPBR",
+ "Components": {
+ "Component_[10826024012928681054]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 10826024012928681054
+ },
+ "Component_[12821987693261496174]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12821987693261496174,
+ "Parent Entity": ""
+ },
+ "Component_[1347237730046420905]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1347237730046420905
+ },
+ "Component_[13962868105035894085]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 13962868105035894085
+ },
+ "Component_[17956955568472089321]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17956955568472089321
+ },
+ "Component_[1982369816302736367]": {
+ "$type": "EditorLockComponent",
+ "Id": 1982369816302736367
+ },
+ "Component_[2765278216943439310]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2765278216943439310
+ },
+ "Component_[2823302329697962266]": {
+ "$type": "SelectionComponent",
+ "Id": 2823302329697962266
+ },
+ "Component_[5490362878017390612]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5490362878017390612
+ },
+ "Component_[7468073145776592577]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 7468073145776592577,
+ "Child Entity Order": [
+ "Entity_[2302906036425]"
+ ]
+ },
+ "Component_[7692885660975737763]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 7692885660975737763
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[2302906036425]": {
+ "Id": "Entity_[2302906036425]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{E66E4343-F45A-536D-AAE1-C4D096420640}"
+ },
+ "assetHint": "materials/presets/pbr/metal_nickel_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubePalladiumPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubePalladiumPolishedPBR.prefab
new file mode 100644
index 0000000000..ace44a3d34
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubePalladiumPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubePalladiumPolishedPBR",
+ "Components": {
+ "Component_[10678536274818457672]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10678536274818457672
+ },
+ "Component_[12041428694628704247]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12041428694628704247
+ },
+ "Component_[12143022343588526078]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 12143022343588526078
+ },
+ "Component_[15178316190409605112]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 15178316190409605112
+ },
+ "Component_[16012620721047170064]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16012620721047170064,
+ "Parent Entity": ""
+ },
+ "Component_[1646888921009876369]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 1646888921009876369
+ },
+ "Component_[17677550467282239311]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17677550467282239311,
+ "Child Entity Order": [
+ "Entity_[2552014139593]"
+ ]
+ },
+ "Component_[4972639499125068141]": {
+ "$type": "EditorLockComponent",
+ "Id": 4972639499125068141
+ },
+ "Component_[5526570610744382545]": {
+ "$type": "SelectionComponent",
+ "Id": 5526570610744382545
+ },
+ "Component_[6509459924043770606]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 6509459924043770606
+ },
+ "Component_[7268409859686144269]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 7268409859686144269
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[2552014139593]": {
+ "Id": "Entity_[2552014139593]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{D0E9960A-4B31-5136-BAC6-5482B203D3B4}"
+ },
+ "assetHint": "materials/presets/pbr/metal_palladium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubePlatinumPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubePlatinumPolishedPBR.prefab
new file mode 100644
index 0000000000..79bc443342
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubePlatinumPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubePlatinumPolishedPBR",
+ "Components": {
+ "Component_[12172311178585433096]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12172311178585433096
+ },
+ "Component_[14133734575774270778]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14133734575774270778
+ },
+ "Component_[1499102502234135899]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 1499102502234135899,
+ "Parent Entity": ""
+ },
+ "Component_[17753826932279572795]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17753826932279572795
+ },
+ "Component_[3472150728361446089]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 3472150728361446089
+ },
+ "Component_[5413614787652013946]": {
+ "$type": "EditorLockComponent",
+ "Id": 5413614787652013946
+ },
+ "Component_[6608132617418028580]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 6608132617418028580,
+ "Child Entity Order": [
+ "Entity_[2818302111945]"
+ ]
+ },
+ "Component_[6809102061425149362]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 6809102061425149362
+ },
+ "Component_[6916818921856882722]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6916818921856882722
+ },
+ "Component_[7486700682637381880]": {
+ "$type": "SelectionComponent",
+ "Id": 7486700682637381880
+ },
+ "Component_[7993011597330638847]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7993011597330638847
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[2818302111945]": {
+ "Id": "Entity_[2818302111945]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{79419183-FFCE-5A89-AA16-C2789D81AF75}"
+ },
+ "assetHint": "materials/presets/pbr/metal_platinum_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeSilverPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeSilverPolishedPBR.prefab
new file mode 100644
index 0000000000..74a166e09c
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeSilverPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeSilverPolishedPBR",
+ "Components": {
+ "Component_[10846467226799581471]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 10846467226799581471
+ },
+ "Component_[11321068769303258722]": {
+ "$type": "SelectionComponent",
+ "Id": 11321068769303258722
+ },
+ "Component_[14255141886015898000]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 14255141886015898000
+ },
+ "Component_[14442599743555977836]": {
+ "$type": "EditorLockComponent",
+ "Id": 14442599743555977836
+ },
+ "Component_[15390328167304917483]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 15390328167304917483
+ },
+ "Component_[16667892946203958068]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16667892946203958068
+ },
+ "Component_[17957849336986334052]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 17957849336986334052
+ },
+ "Component_[18049054501916401618]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 18049054501916401618,
+ "Parent Entity": ""
+ },
+ "Component_[362051120594559781]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 362051120594559781
+ },
+ "Component_[5852346937789040993]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5852346937789040993,
+ "Child Entity Order": [
+ "Entity_[3101769953481]"
+ ]
+ },
+ "Component_[7250311833503679341]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 7250311833503679341
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[3101769953481]": {
+ "Id": "Entity_[3101769953481]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{2AC06FA3-7670-542E-8996-DF346AFF1B61}"
+ },
+ "assetHint": "materials/presets/pbr/metal_silver_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Prefabs/TestData/Graphics/CubeTitaniumPolishedPBR.prefab b/AutomatedTesting/Prefabs/TestData/Graphics/CubeTitaniumPolishedPBR.prefab
new file mode 100644
index 0000000000..c732fee593
--- /dev/null
+++ b/AutomatedTesting/Prefabs/TestData/Graphics/CubeTitaniumPolishedPBR.prefab
@@ -0,0 +1,156 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "CubeTitaniumPolishedPBR",
+ "Components": {
+ "Component_[11835136016071721229]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 11835136016071721229
+ },
+ "Component_[14924371629431224666]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 14924371629431224666,
+ "Parent Entity": ""
+ },
+ "Component_[15534521734777674027]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 15534521734777674027
+ },
+ "Component_[16612248066971579226]": {
+ "$type": "SelectionComponent",
+ "Id": 16612248066971579226
+ },
+ "Component_[16806731875899878085]": {
+ "$type": "EditorLockComponent",
+ "Id": 16806731875899878085
+ },
+ "Component_[3294763415970396682]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3294763415970396682
+ },
+ "Component_[3871617444656658973]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 3871617444656658973,
+ "Child Entity Order": [
+ "Entity_[3406712631497]"
+ ]
+ },
+ "Component_[6604961087017250006]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 6604961087017250006
+ },
+ "Component_[6721284225512452216]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 6721284225512452216
+ },
+ "Component_[8673188027501037544]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 8673188027501037544
+ },
+ "Component_[9993323762911548658]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9993323762911548658
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[3406712631497]": {
+ "Id": "Entity_[3406712631497]",
+ "Name": "Entity1",
+ "Components": {
+ "Component_[11024839750215572075]": {
+ "$type": "SelectionComponent",
+ "Id": 11024839750215572075
+ },
+ "Component_[11384176886283708819]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11384176886283708819,
+ "Parent Entity": "ContainerEntity"
+ },
+ "Component_[1606410272595503925]": {
+ "$type": "EditorMaterialComponent",
+ "Id": 1606410272595503925,
+ "Controller": {
+ "Configuration": {
+ "materials": [
+ {
+ "Key": {
+ "materialSlotStableId": 2418540911
+ },
+ "Value": {
+ "MaterialAsset": {
+ "assetId": {
+ "guid": "{3F0DF0C4-5F23-5EB1-B762-7344AFFDC011}"
+ },
+ "assetHint": "materials/presets/pbr/metal_titanium_polished.azmaterial"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Component_[16470114336751653654]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16470114336751653654,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11384176886283708819
+ },
+ {
+ "ComponentId": 89717634602996901,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 1606410272595503925,
+ "SortIndex": 2
+ }
+ ]
+ },
+ "Component_[4303036201889516060]": {
+ "$type": "EditorLockComponent",
+ "Id": 4303036201889516060
+ },
+ "Component_[44336138790150350]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 44336138790150350
+ },
+ "Component_[4558973254917759795]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4558973254917759795
+ },
+ "Component_[4674030476408790307]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4674030476408790307
+ },
+ "Component_[4802851695039968062]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4802851695039968062
+ },
+ "Component_[5821006029055754615]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5821006029055754615
+ },
+ "Component_[8587156575497792590]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8587156575497792590
+ },
+ "Component_[89717634602996901]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 89717634602996901,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{E14975EF-E676-51A4-B826-3EF59CB645AA}",
+ "subId": 285127096
+ },
+ "assetHint": "testdata/objects/cube/cube.azmodel"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Code/Editor/Core/LevelEditorMenuHandler.cpp b/Code/Editor/Core/LevelEditorMenuHandler.cpp
index 70aff10f87..a90b0a597a 100644
--- a/Code/Editor/Core/LevelEditorMenuHandler.cpp
+++ b/Code/Editor/Core/LevelEditorMenuHandler.cpp
@@ -538,6 +538,7 @@ void LevelEditorMenuHandler::PopulateEditMenu(ActionManager::MenuWrapper& editMe
auto snapMenu = modifyMenu.AddMenu(tr("Snap"));
snapMenu.AddAction(AzToolsFramework::SnapAngle);
+ snapMenu.AddAction(AzToolsFramework::SnapToGrid);
auto transformModeMenu = modifyMenu.AddMenu(tr("Transform Mode"));
transformModeMenu.AddAction(AzToolsFramework::EditModeMove);
@@ -723,7 +724,8 @@ QMenu* LevelEditorMenuHandler::CreateViewMenu()
// MISSING AVIRECORDER
viewportViewsMenuWrapper.AddSeparator();
- viewportViewsMenuWrapper.AddAction(ID_DISPLAY_SHOWHELPERS);
+ viewportViewsMenuWrapper.AddAction(AzToolsFramework::Helpers);
+ viewportViewsMenuWrapper.AddAction(AzToolsFramework::Icons);
// Refresh Style
viewMenu.AddAction(ID_SKINS_REFRESH);
diff --git a/Code/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp
index 3890a9e59a..4415308730 100644
--- a/Code/Editor/CryEdit.cpp
+++ b/Code/Editor/CryEdit.cpp
@@ -445,7 +445,6 @@ void CCryEditApp::RegisterActionHandlers()
ON_COMMAND(ID_OPEN_ASSET_BROWSER, OnOpenAssetBrowserView)
ON_COMMAND(ID_OPEN_AUDIO_CONTROLS_BROWSER, OnOpenAudioControlsEditor)
- ON_COMMAND(ID_DISPLAY_SHOWHELPERS, OnShowHelpers)
ON_COMMAND(ID_OPEN_TRACKVIEW, OnOpenTrackView)
ON_COMMAND(ID_OPEN_UICANVASEDITOR, OnOpenUICanvasEditor)
@@ -2617,12 +2616,6 @@ void CCryEditApp::OnUpdateSelected(QAction* action)
action->setEnabled(!GetIEditor()->GetSelection()->IsEmpty());
}
-void CCryEditApp::OnShowHelpers()
-{
- GetIEditor()->GetDisplaySettings()->DisplayHelpers(!GetIEditor()->GetDisplaySettings()->IsDisplayHelpers());
- GetIEditor()->Notify(eNotify_OnDisplayRenderUpdate);
-}
-
//////////////////////////////////////////////////////////////////////////
void CCryEditApp::OnEditLevelData()
{
diff --git a/Code/Editor/CryEdit.h b/Code/Editor/CryEdit.h
index 8c514170ae..97fcde8f34 100644
--- a/Code/Editor/CryEdit.h
+++ b/Code/Editor/CryEdit.h
@@ -237,7 +237,6 @@ public:
void OnSyncPlayerUpdate(QAction* action);
void OnResourcesReduceworkingset();
void OnDummyCommand() {};
- void OnShowHelpers();
void OnFileSave();
void OnUpdateDocumentReady(QAction* action);
void OnUpdateFileOpen(QAction* action);
diff --git a/Code/Editor/DisplaySettings.cpp b/Code/Editor/DisplaySettings.cpp
index ed4ca180b4..bfeac3e37f 100644
--- a/Code/Editor/DisplaySettings.cpp
+++ b/Code/Editor/DisplaySettings.cpp
@@ -68,8 +68,6 @@ void CDisplaySettings::SetObjectHideMask(int hideMask)
m_objectHideMask = hideMask;
gSettings.objectHideMask = m_objectHideMask;
-
- GetIEditor()->Notify(eNotify_OnDisplayRenderUpdate);
};
//////////////////////////////////////////////////////////////////////////
diff --git a/Code/Editor/EditorViewportWidget.cpp b/Code/Editor/EditorViewportWidget.cpp
index 3f9ff03203..754ea84544 100644
--- a/Code/Editor/EditorViewportWidget.cpp
+++ b/Code/Editor/EditorViewportWidget.cpp
@@ -46,6 +46,7 @@
#include
#include
#include
+#include
#include
#include
@@ -1621,14 +1622,14 @@ Vec3 EditorViewportWidget::ViewToWorld(
auto ray = m_renderViewport->ViewportScreenToWorldRay(AzToolsFramework::ViewportInteraction::ScreenPointFromQPoint(vp));
const float maxDistance = 10000.f;
- Vec3 v = AZVec3ToLYVec3(ray.direction) * maxDistance;
+ Vec3 v = AZVec3ToLYVec3(ray.m_direction) * maxDistance;
if (!_finite(v.x) || !_finite(v.y) || !_finite(v.z))
{
return Vec3(0, 0, 0);
}
- Vec3 colp = AZVec3ToLYVec3(ray.origin) + 0.002f * v;
+ Vec3 colp = AZVec3ToLYVec3(ray.m_origin) + 0.002f * v;
return colp;
}
@@ -2420,6 +2421,16 @@ AZ::Vector3 EditorViewportSettings::DefaultEditorCameraPosition() const
return SandboxEditor::CameraDefaultEditorPosition();
}
+bool EditorViewportSettings::IconsVisible() const
+{
+ return AzToolsFramework::IconsVisible();
+}
+
+bool EditorViewportSettings::HelpersVisible() const
+{
+ return AzToolsFramework::HelpersVisible();
+}
+
AZ_CVAR_EXTERNED(bool, ed_previewGameInFullscreen_once);
bool EditorViewportWidget::ShouldPreviewFullscreen() const
diff --git a/Code/Editor/EditorViewportWidget.h b/Code/Editor/EditorViewportWidget.h
index 3d52b2416d..83ca655326 100644
--- a/Code/Editor/EditorViewportWidget.h
+++ b/Code/Editor/EditorViewportWidget.h
@@ -79,6 +79,8 @@ struct EditorViewportSettings : public AzToolsFramework::ViewportInteraction::Vi
float ManipulatorCircleBoundWidth() const override;
bool StickySelectEnabled() const override;
AZ::Vector3 DefaultEditorCameraPosition() const override;
+ bool IconsVisible() const override;
+ bool HelpersVisible() const override;
};
// EditorViewportWidget window
diff --git a/Code/Editor/IEditor.h b/Code/Editor/IEditor.h
index 48c8392f32..c6f72a7dbc 100644
--- a/Code/Editor/IEditor.h
+++ b/Code/Editor/IEditor.h
@@ -168,8 +168,6 @@ enum EEditorNotifyEvent
eNotify_OnVegetationObjectSelection, // When vegetation objects selection change.
eNotify_OnVegetationPanelUpdate, // When vegetation objects selection change.
- eNotify_OnDisplayRenderUpdate, // Sent when editor finish terrain texture generation.
-
eNotify_OnDataBaseUpdate, // DataBase Library was modified.
eNotify_OnLayerImportBegin, //layer import was started
diff --git a/Code/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp
index 38e433c3a3..f92e39f285 100644
--- a/Code/Editor/MainWindow.cpp
+++ b/Code/Editor/MainWindow.cpp
@@ -47,6 +47,7 @@ AZ_POP_DISABLE_WARNING
#include
#include
#include
+#include
#include
// AzQtComponents
@@ -445,11 +446,11 @@ void MainWindow::Initialize()
{
m_viewPaneManager->SetMainWindow(m_viewPaneHost, &m_settings, /*unused*/ QByteArray());
+ InitActions();
+
RegisterStdViewClasses();
InitCentralWidget();
- InitActions();
-
// load toolbars ("shelves") and macros
GetIEditor()->GetToolBoxManager()->Load(m_actionManager);
@@ -798,27 +799,40 @@ void MainWindow::InitActions()
EditorTransformComponentSelectionRequests::Mode::Scale);
});
- am->AddAction(AzToolsFramework::SnapToGrid, tr("Snap to grid"))
+ am->AddAction(AzToolsFramework::SnapToGrid, tr("Grid snapping"))
.SetIcon(Style::icon("Grid"))
+ .SetStatusTip(tr("Toggle grid snapping"))
.SetShortcut(tr("G"))
- .SetToolTip(tr("Snap to grid (G)"))
- .SetStatusTip(tr("Toggles snap to grid"))
.SetCheckable(true)
- .RegisterUpdateCallback([](QAction* action) {
- Q_ASSERT(action->isCheckable());
- action->setChecked(SandboxEditor::GridSnappingEnabled());
- })
- .Connect(&QAction::triggered, []() { SandboxEditor::SetGridSnapping(!SandboxEditor::GridSnappingEnabled()); });
+ .RegisterUpdateCallback(
+ [](QAction* action)
+ {
+ Q_ASSERT(action->isCheckable());
+ action->setChecked(SandboxEditor::GridSnappingEnabled());
+ })
+ .Connect(
+ &QAction::triggered,
+ []
+ {
+ SandboxEditor::SetGridSnapping(!SandboxEditor::GridSnappingEnabled());
+ });
- am->AddAction(AzToolsFramework::SnapAngle, tr("Snap angle"))
+ am->AddAction(AzToolsFramework::SnapAngle, tr("Angle snapping"))
.SetIcon(Style::icon("Angle"))
- .SetStatusTip(tr("Snap angle"))
+ .SetStatusTip(tr("Toggle angle snapping"))
.SetCheckable(true)
- .RegisterUpdateCallback([](QAction* action) {
- Q_ASSERT(action->isCheckable());
- action->setChecked(SandboxEditor::AngleSnappingEnabled());
- })
- .Connect(&QAction::triggered, []() { SandboxEditor::SetAngleSnapping(!SandboxEditor::AngleSnappingEnabled()); });
+ .RegisterUpdateCallback(
+ [](QAction* action)
+ {
+ Q_ASSERT(action->isCheckable());
+ action->setChecked(SandboxEditor::AngleSnappingEnabled());
+ })
+ .Connect(
+ &QAction::triggered,
+ []
+ {
+ SandboxEditor::SetAngleSnapping(!SandboxEditor::AngleSnappingEnabled());
+ });
// Display actions
am->AddAction(ID_SWITCHCAMERA_DEFAULTCAMERA, tr("Default Camera")).SetCheckable(true)
@@ -918,9 +932,41 @@ void MainWindow::InitActions()
.SetStatusTip(tr("Cycle 2D Viewport"))
.RegisterUpdateCallback(cryEdit, &CCryEditApp::OnUpdateNonGameMode);
#endif
- am->AddAction(ID_DISPLAY_SHOWHELPERS, tr("Show/Hide Helpers"))
+ am->AddAction(AzToolsFramework::Helpers, tr("Show Helpers"))
.SetShortcut(tr("Shift+Space"))
- .SetToolTip(tr("Show/Hide Helpers (Shift+Space)"));
+ .SetToolTip(tr("Show/Hide Helpers (Shift+Space)"))
+ .SetCheckable(true)
+ .RegisterUpdateCallback(
+ [](QAction* action)
+ {
+ Q_ASSERT(action->isCheckable());
+ action->setChecked(AzToolsFramework::HelpersVisible());
+ })
+ .Connect(
+ &QAction::triggered,
+ []()
+ {
+ AzToolsFramework::SetHelpersVisible(!AzToolsFramework::HelpersVisible());
+ AzToolsFramework::ViewportInteraction::ViewportSettingsNotificationBus::Broadcast(
+ &AzToolsFramework::ViewportInteraction::ViewportSettingNotifications::OnDrawHelpersChanged,
+ AzToolsFramework::HelpersVisible());
+ });
+ am->AddAction(AzToolsFramework::Icons, tr("Show Icons"))
+ .SetShortcut(tr("Ctrl+Space"))
+ .SetToolTip(tr("Show/Hide Icons (Ctrl+Space)"))
+ .SetCheckable(true)
+ .RegisterUpdateCallback(
+ [](QAction* action)
+ {
+ Q_ASSERT(action->isCheckable());
+ action->setChecked(AzToolsFramework::IconsVisible());
+ })
+ .Connect(
+ &QAction::triggered,
+ []()
+ {
+ AzToolsFramework::SetIconsVisible(!AzToolsFramework::IconsVisible());
+ });
// Audio actions
am->AddAction(ID_SOUND_STOPALLSOUNDS, tr("Stop All Sounds"))
diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp
index d5b903585e..69b195d243 100644
--- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp
+++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp
@@ -1986,8 +1986,3 @@ void SandboxIntegrationManager::BrowseForAssets(AssetSelectionModel& selection)
{
AssetBrowserComponentRequestBus::Broadcast(&AssetBrowserComponentRequests::PickAssets, selection, GetMainWindow());
}
-
-bool SandboxIntegrationManager::DisplayHelpersVisible()
-{
- return GetIEditor()->GetDisplaySettings()->IsDisplayHelpers();
-}
diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h
index 79e7a4334d..c58f019c85 100644
--- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h
+++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h
@@ -165,7 +165,6 @@ private:
void InstantiateSliceFromAssetId(const AZ::Data::AssetId& assetId) override;
void ClearRedoStack() override;
int GetIconTextureIdFromEntityIconPath(const AZStd::string& entityIconPath) override;
- bool DisplayHelpersVisible() override;
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp
index af58ac4b6b..15bdfa9bf2 100644
--- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp
+++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp
@@ -1281,6 +1281,8 @@ void OutlinerWidget::OnSearchTextChanged(const QString& activeTextFilter)
m_listModel->SearchStringChanged(filterString);
m_proxyModel->UpdateFilter();
+
+ m_gui->m_objectTree->expandAll();
}
void OutlinerWidget::OnFilterChanged(const AzQtComponents::SearchTypeFilterList& activeTypeFilters)
diff --git a/Code/Editor/Resource.h b/Code/Editor/Resource.h
index ba3cd39fe7..432f07a531 100644
--- a/Code/Editor/Resource.h
+++ b/Code/Editor/Resource.h
@@ -191,7 +191,6 @@
#define ID_BRUSH_CSGSUBSTRUCT 33837
#define ID_MATERIAL_PICKTOOL 33842
#define ID_MODIFY_AIPOINT_PICKIMPASSLINK 33865
-#define ID_DISPLAY_SHOWHELPERS 33871
#define ID_FILE_EXPORTSELECTION 33875
#define ID_EDIT_PASTE_WITH_LINKS 33893
#define ID_FILE_EXPORT_TERRAINAREA 33904
diff --git a/Code/Editor/ViewportManipulatorController.cpp b/Code/Editor/ViewportManipulatorController.cpp
index e46328eb65..9879a84b62 100644
--- a/Code/Editor/ViewportManipulatorController.cpp
+++ b/Code/Editor/ViewportManipulatorController.cpp
@@ -129,8 +129,8 @@ namespace SandboxEditor
ViewportInteractionRequestBus::EventResult(
ray, GetViewportId(), &ViewportInteractionRequestBus::Events::ViewportScreenToWorldRay, screenPoint);
- m_mouseInteraction.m_mousePick.m_rayOrigin = ray.origin;
- m_mouseInteraction.m_mousePick.m_rayDirection = ray.direction;
+ m_mouseInteraction.m_mousePick.m_rayOrigin = ray.m_origin;
+ m_mouseInteraction.m_mousePick.m_rayDirection = ray.m_direction;
m_mouseInteraction.m_mousePick.m_screenCoordinates = screenPoint;
}
diff --git a/Code/Editor/ViewportTitleDlg.cpp b/Code/Editor/ViewportTitleDlg.cpp
index 49459fad0f..888089fd72 100644
--- a/Code/Editor/ViewportTitleDlg.cpp
+++ b/Code/Editor/ViewportTitleDlg.cpp
@@ -6,7 +6,6 @@
*
*/
-
// Description : CViewportTitleDlg implementation file
#if !defined(Q_MOC_RUN)
@@ -42,38 +41,18 @@
#include
#include
#include
+#include
+#include
#include
AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING
#include "ui_ViewportTitleDlg.h"
AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING
-#endif //!defined(Q_MOC_RUN)
+#endif //! defined(Q_MOC_RUN)
// CViewportTitleDlg dialog
-inline namespace Helpers
-{
- void ToggleHelpers()
- {
- const bool newValue = !GetIEditor()->GetDisplaySettings()->IsDisplayHelpers();
- GetIEditor()->GetDisplaySettings()->DisplayHelpers(newValue);
- GetIEditor()->Notify(eNotify_OnDisplayRenderUpdate);
-
- if (newValue == false)
- {
- GetIEditor()->GetObjectManager()->SendEvent(EVENT_HIDE_HELPER);
- }
- AzToolsFramework::ViewportInteraction::ViewportSettingsNotificationBus::Broadcast(
- &AzToolsFramework::ViewportInteraction::ViewportSettingNotifications::OnDrawHelpersChanged, newValue);
- }
-
- bool IsHelpersShown()
- {
- return GetIEditor()->GetDisplaySettings()->IsDisplayHelpers();
- }
-}
-
namespace
{
class CViewportTitleDlgDisplayInfoHelper
@@ -98,7 +77,7 @@ namespace
emit ViewportInfoStatusUpdated(static_cast(state));
}
};
-} //end anonymous namespace
+} // end anonymous namespace
CViewportTitleDlg::CViewportTitleDlg(QWidget* pParent)
: QWidget(pParent)
@@ -215,13 +194,65 @@ void CViewportTitleDlg::SetupViewportInformationMenu()
m_ui->m_debugInformationMenu->setMenu(GetViewportInformationMenu());
connect(m_ui->m_debugInformationMenu, &QToolButton::clicked, this, &CViewportTitleDlg::OnToggleDisplayInfo);
m_ui->m_debugInformationMenu->setPopupMode(QToolButton::MenuButtonPopup);
-
}
void CViewportTitleDlg::SetupHelpersButton()
{
- connect(m_ui->m_helpers, &QToolButton::clicked, this, &CViewportTitleDlg::OnToggleHelpers);
- m_ui->m_helpers->setChecked(Helpers::IsHelpersShown());
+ if (m_helpersMenu == nullptr)
+ {
+ m_helpersMenu = new QMenu("Helpers State", this);
+
+ auto helperAction = MainWindow::instance()->GetActionManager()->GetAction(AzToolsFramework::Helpers);
+ connect(
+ helperAction, &QAction::triggered, this,
+ [this]
+ {
+ m_ui->m_helpers->setChecked(AzToolsFramework::HelpersVisible() || AzToolsFramework::IconsVisible());
+ });
+
+ auto iconAction = MainWindow::instance()->GetActionManager()->GetAction(AzToolsFramework::Icons);
+ connect(
+ iconAction, &QAction::triggered, this,
+ [this]
+ {
+ m_ui->m_helpers->setChecked(AzToolsFramework::HelpersVisible() || AzToolsFramework::IconsVisible());
+ });
+
+ m_helpersAction = new QAction(tr("Helpers"), m_helpersMenu);
+ m_helpersAction->setCheckable(true);
+ connect(
+ m_helpersAction, &QAction::triggered, this,
+ [helperAction]
+ {
+ helperAction->trigger();
+ });
+
+ m_iconsAction = new QAction(tr("Icons"), m_helpersMenu);
+ m_iconsAction->setCheckable(true);
+ connect(
+ m_iconsAction, &QAction::triggered, this,
+ [iconAction]
+ {
+ iconAction->trigger();
+ });
+
+ m_helpersMenu->addAction(m_helpersAction);
+ m_helpersMenu->addAction(m_iconsAction);
+
+ connect(
+ m_helpersMenu, &QMenu::aboutToShow, this,
+ [this]
+ {
+ m_helpersAction->setChecked(AzToolsFramework::HelpersVisible());
+ m_iconsAction->setChecked(AzToolsFramework::IconsVisible());
+ });
+
+ m_ui->m_helpers->setCheckable(true);
+ m_ui->m_helpers->setMenu(m_helpersMenu);
+ m_ui->m_helpers->setPopupMode(QToolButton::InstantPopup);
+ }
+
+ m_ui->m_helpers->setChecked(AzToolsFramework::HelpersVisible() || AzToolsFramework::IconsVisible());
}
void CViewportTitleDlg::SetupOverflowMenu()
@@ -279,15 +310,20 @@ void CViewportTitleDlg::SetupOverflowMenu()
UpdateMuteActionText();
}
-
//////////////////////////////////////////////////////////////////////////
void CViewportTitleDlg::SetViewPane(CLayoutViewPane* pViewPane)
{
if (m_pViewPane)
+ {
m_pViewPane->disconnect(this);
+ }
+
m_pViewPane = pViewPane;
+
if (m_pViewPane)
+ {
connect(this, &QWidget::customContextMenuRequested, m_pViewPane, &CLayoutViewPane::ShowTitleMenu);
+ }
}
//////////////////////////////////////////////////////////////////////////
@@ -318,7 +354,6 @@ void CViewportTitleDlg::OnInitDialog()
m_ui->m_prefabFocusPath->hide();
m_ui->m_prefabFocusBackButton->hide();
}
-
}
//////////////////////////////////////////////////////////////////////////
@@ -336,13 +371,6 @@ void CViewportTitleDlg::OnMaximize()
}
}
-//////////////////////////////////////////////////////////////////////////
-void CViewportTitleDlg::OnToggleHelpers()
-{
- Helpers::ToggleHelpers();
- m_ui->m_helpers->setChecked(Helpers::IsHelpersShown());
-}
-
void CViewportTitleDlg::SetNoViewportInfo()
{
AZ::AtomBridge::AtomViewportInfoDisplayRequestBus::Broadcast(
@@ -367,7 +395,6 @@ void CViewportTitleDlg::SetCompactViewportInfo()
&AZ::AtomBridge::AtomViewportInfoDisplayRequestBus::Events::SetDisplayState, AZ::AtomBridge::ViewportInfoDisplayState::CompactInfo);
}
-
//////////////////////////////////////////////////////////////////////////
void CViewportTitleDlg::UpdateDisplayInfo()
{
@@ -783,9 +810,6 @@ void CViewportTitleDlg::OnEditorNotifyEvent(EEditorNotifyEvent event)
{
switch (event)
{
- case eNotify_OnDisplayRenderUpdate:
- m_ui->m_helpers->setChecked(Helpers::IsHelpersShown());
- break;
case eNotify_OnBeginGameMode:
case eNotify_OnEndGameMode:
UpdateMuteActionText();
@@ -997,24 +1021,18 @@ void CViewportTitleDlg::UpdateOverFlowMenuState()
m_angleSizeActionWidget->setEnabled(angleSnappingActive);
}
-namespace
+ namespace
{
void PyToggleHelpers()
{
- GetIEditor()->GetDisplaySettings()->DisplayHelpers(!GetIEditor()->GetDisplaySettings()->IsDisplayHelpers());
- GetIEditor()->Notify(eNotify_OnDisplayRenderUpdate);
-
- if (GetIEditor()->GetDisplaySettings()->IsDisplayHelpers() == false)
- {
- GetIEditor()->GetObjectManager()->SendEvent(EVENT_HIDE_HELPER);
- }
+ AzToolsFramework::SetHelpersVisible(!AzToolsFramework::HelpersVisible());
}
bool PyIsHelpersShown()
{
- return GetIEditor()->GetDisplaySettings()->IsDisplayHelpers();
+ return AzToolsFramework::HelpersVisible();
}
-}
+} // namespace
namespace AzToolsFramework
{
@@ -1029,11 +1047,12 @@ namespace AzToolsFramework
->Attribute(AZ::Script::Attributes::Category, "Legacy/Editor")
->Attribute(AZ::Script::Attributes::Module, "legacy.general");
};
+
addLegacyGeneral(behaviorContext->Method("toggle_helpers", PyToggleHelpers, nullptr, "Toggles the display of helpers."));
addLegacyGeneral(behaviorContext->Method("is_helpers_shown", PyIsHelpersShown, nullptr, "Gets the display state of helpers."));
}
}
-}
+} // namespace AzToolsFramework
#include "ViewportTitleDlg.moc"
#include
diff --git a/Code/Editor/ViewportTitleDlg.h b/Code/Editor/ViewportTitleDlg.h
index a3e19837b4..ba3dba858a 100644
--- a/Code/Editor/ViewportTitleDlg.h
+++ b/Code/Editor/ViewportTitleDlg.h
@@ -80,7 +80,6 @@ protected:
void OnSystemEvent(ESystemEvent event, UINT_PTR wparam, UINT_PTR lparam) override;
void OnMaximize();
- void OnToggleHelpers();
void UpdateDisplayInfo();
void SetupCameraDropdownMenu();
@@ -153,6 +152,9 @@ protected:
QMenu* m_aspectMenu = nullptr;
QMenu* m_resolutionMenu = nullptr;
QMenu* m_viewportInformationMenu = nullptr;
+ QMenu* m_helpersMenu = nullptr;
+ QAction* m_helpersAction = nullptr;
+ QAction* m_iconsAction = nullptr;
QAction* m_noInformationAction = nullptr;
QAction* m_normalInformationAction = nullptr;
QAction* m_fullInformationAction = nullptr;
diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp b/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp
index e06cd184ad..fac70bd05a 100644
--- a/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp
+++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp
@@ -254,13 +254,13 @@ namespace AZ
Method("CreateFromMatrix3x3", &Quaternion::CreateFromMatrix3x3)->
Method("CreateFromMatrix4x4", &Quaternion::CreateFromMatrix4x4)->
Method("CreateFromAxisAngle", &Quaternion::CreateFromAxisAngle)->
+ Method("CreateFromScaledAxisAngle", &Quaternion::CreateFromScaledAxisAngle)->
Method("CreateShortestArc", &Quaternion::CreateShortestArc)->
Method("CreateFromEulerAnglesDegrees", &Quaternion::CreateFromEulerAnglesDegrees)
;
}
}
-
Quaternion Quaternion::CreateFromMatrix3x3(const Matrix3x3& m)
{
return CreateFromBasis(m.GetBasisX(), m.GetBasisY(), m.GetBasisZ());
@@ -430,4 +430,24 @@ namespace AZ
outAngle = 0.0f;
}
}
+
+
+ Vector3 Quaternion::ConvertToScaledAxisAngle() const
+ {
+ // Take the log of the quaternion to convert it to the exponential map
+ // and multiply it by 2.0 to bring it into the scaled axis-angle representation.
+ const AZ::Vector3 imaginary = GetImaginary();
+ const float length = imaginary.GetLength();
+ if (length < AZ::Constants::FloatEpsilon)
+ {
+ return imaginary * 2.0f;
+ }
+ else
+ {
+ const float halfAngle = acosf(AZ::GetClamp(GetW(), -1.0f, 1.0f));
+
+ // Multiply by 2.0 to convert the half angle into the full one.
+ return halfAngle * 2.0f * (imaginary / length);
+ }
+ }
}
diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.h b/Code/Framework/AzCore/AzCore/Math/Quaternion.h
index f2c266ed3e..83e8012a62 100644
--- a/Code/Framework/AzCore/AzCore/Math/Quaternion.h
+++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.h
@@ -77,6 +77,9 @@ namespace AZ
static Quaternion CreateFromAxisAngle(const Vector3& axis, float angle);
+ //! Create a quaternion from a scaled axis-angle representation.
+ static Quaternion CreateFromScaledAxisAngle(const Vector3& scaledAxisAngle);
+
static Quaternion CreateShortestArc(const Vector3& v1, const Vector3& v2);
//! Creates a quaternion using rotation in degrees about the axes. First rotated about the X axis, followed by the Y axis, then the Z axis.
@@ -231,6 +234,9 @@ namespace AZ
//! @param[out] outAngle A float rotation angle around the axis in radians.
void ConvertToAxisAngle(Vector3& outAxis, float& outAngle) const;
+ //! Convert the quaternion into scaled axis-angle representation.
+ Vector3 ConvertToScaledAxisAngle() const;
+
//! Returns the imaginary (X/Y/Z) portion of the quaternion.
Vector3 GetImaginary() const;
diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.inl b/Code/Framework/AzCore/AzCore/Math/Quaternion.inl
index 82cd9078fa..37319ae146 100644
--- a/Code/Framework/AzCore/AzCore/Math/Quaternion.inl
+++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.inl
@@ -109,6 +109,24 @@ namespace AZ
}
+ AZ_MATH_INLINE Quaternion Quaternion::CreateFromScaledAxisAngle(const Vector3& scaledAxisAngle)
+ {
+ const AZ::Vector3 exponentialMap = scaledAxisAngle / 2.0f;
+ const float halfAngle = exponentialMap.GetLength();
+
+ if (halfAngle < AZ::Constants::FloatEpsilon)
+ {
+ return AZ::Quaternion::CreateFromVector3AndValue(exponentialMap, 1.0f).GetNormalized();
+ }
+ else
+ {
+ float sin, cos;
+ SinCos(halfAngle, sin, cos);
+ return AZ::Quaternion::CreateFromVector3AndValue((sin / halfAngle) * exponentialMap, cos);
+ }
+ }
+
+
AZ_MATH_INLINE void Quaternion::StoreToFloat4(float* values) const
{
Simd::Vec4::StoreUnaligned(values, m_value);
diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp
index 680d93501a..2b2f752b06 100644
--- a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp
@@ -16,438 +16,421 @@
#include
-using namespace AZ;
-using namespace AZ::Debug;
+namespace AZ::Debug
+{
+ // Many PC tools break with alloc/free size mismatches when the memory guard is enabled. Disable for now
+ //#define ENABLE_MEMORY_GUARD
-// Many PC tools break with alloc/free size mismatches when the memory guard is enabled. Disable for now
-//#define ENABLE_MEMORY_GUARD
-
-//=========================================================================
-// AllocationRecords
-// [9/16/2009]
-//=========================================================================
-AllocationRecords::AllocationRecords(unsigned char stackRecordLevels, [[maybe_unused]] bool isMemoryGuard, bool isMarkUnallocatedMemory, const char* allocatorName)
- : m_mode(AllocatorManager::Instance().m_defaultTrackingRecordMode)
- , m_isAutoIntegrityCheck(false)
- , m_isMarkUnallocatedMemory(isMarkUnallocatedMemory)
- , m_saveNames(false)
- , m_decodeImmediately(false)
- , m_numStackLevels(stackRecordLevels)
+ //=========================================================================
+ // AllocationRecords
+ // [9/16/2009]
+ //=========================================================================
+ AllocationRecords::AllocationRecords(
+ unsigned char stackRecordLevels, [[maybe_unused]] bool isMemoryGuard, bool isMarkUnallocatedMemory, const char* allocatorName)
+ : m_mode(AllocatorManager::Instance().m_defaultTrackingRecordMode)
+ , m_isAutoIntegrityCheck(false)
+ , m_isMarkUnallocatedMemory(isMarkUnallocatedMemory)
+ , m_saveNames(false)
+ , m_decodeImmediately(false)
+ , m_numStackLevels(stackRecordLevels)
#if defined(ENABLE_MEMORY_GUARD)
- , m_memoryGuardSize(isMemoryGuard ? sizeof(Debug::GuardValue) : 0)
+ , m_memoryGuardSize(isMemoryGuard ? sizeof(Debug::GuardValue) : 0)
#else
- , m_memoryGuardSize(0)
+ , m_memoryGuardSize(0)
#endif
- , m_requestedAllocs(0)
- , m_requestedBytes(0)
- , m_requestedBytesPeak(0)
- , m_allocatorName(allocatorName)
-{
-
-}
-
-//=========================================================================
-// ~AllocationRecords
-// [9/16/2009]
-//=========================================================================
-AllocationRecords::~AllocationRecords()
-{
- if (!AllocatorManager::Instance().m_isAllocatorLeaking)
+ , m_requestedAllocs(0)
+ , m_requestedBytes(0)
+ , m_requestedBytesPeak(0)
+ , m_allocatorName(allocatorName)
{
- // dump all allocation (we should not have any at this point).
- bool includeNameAndFilename = (m_saveNames || m_mode == RECORD_FULL);
- EnumerateAllocations(PrintAllocationsCB(true, includeNameAndFilename));
- AZ_Error("Memory", m_records.empty(), "We still have %d allocations on record! They must be freed prior to destroy!", m_records.size());
- }
-}
-
-//=========================================================================
-// lock
-// [9/16/2009]
-//=========================================================================
-void
-AllocationRecords::lock()
-{
- m_recordsMutex.lock();
-}
-
-//=========================================================================
-// try_lock
-// [9/16/2009]
-//=========================================================================
-bool AllocationRecords::try_lock()
-{
- return m_recordsMutex.try_lock();
-}
-
-//=========================================================================
-// unlock
-// [9/16/2009]
-//=========================================================================
-void
-AllocationRecords::unlock()
-{
- m_recordsMutex.unlock();
-}
-
-//=========================================================================
-// RegisterAllocation
-// [9/11/2009]
-//=========================================================================
-const AllocationInfo*
-AllocationRecords::RegisterAllocation(void* address, size_t byteSize, size_t alignment, const char* name, const char* fileName, int lineNum, unsigned int stackSuppressCount)
-{
- (void)stackSuppressCount;
- if (m_mode == RECORD_NO_RECORDS)
- {
- return nullptr;
- }
- if (address == nullptr)
- {
- return nullptr;
}
- // memory guard
- if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ //=========================================================================
+ // ~AllocationRecords
+ // [9/16/2009]
+ //=========================================================================
+ AllocationRecords::~AllocationRecords()
{
- if (m_isAutoIntegrityCheck)
+ if (!AllocatorManager::Instance().m_isAllocatorLeaking)
{
- IntegrityCheck();
+ // dump all allocation (we should not have any at this point).
+ bool includeNameAndFilename = (m_saveNames || m_mode == RECORD_FULL);
+ EnumerateAllocations(PrintAllocationsCB(true, includeNameAndFilename));
+ AZ_Error(
+ "Memory", m_records.empty(), "We still have %d allocations on record! They must be freed prior to destroy!",
+ m_records.size());
+ }
+ }
+
+ //=========================================================================
+ // lock
+ // [9/16/2009]
+ //=========================================================================
+ void AllocationRecords::lock()
+ {
+ m_recordsMutex.lock();
+ }
+
+ //=========================================================================
+ // try_lock
+ // [9/16/2009]
+ //=========================================================================
+ bool AllocationRecords::try_lock()
+ {
+ return m_recordsMutex.try_lock();
+ }
+
+ //=========================================================================
+ // unlock
+ // [9/16/2009]
+ //=========================================================================
+ void AllocationRecords::unlock()
+ {
+ m_recordsMutex.unlock();
+ }
+
+ //=========================================================================
+ // RegisterAllocation
+ // [9/11/2009]
+ //=========================================================================
+ const AllocationInfo* AllocationRecords::RegisterAllocation(
+ void* address,
+ size_t byteSize,
+ size_t alignment,
+ const char* name,
+ const char* fileName,
+ int lineNum,
+ unsigned int stackSuppressCount)
+ {
+ (void)stackSuppressCount;
+ if (m_mode == RECORD_NO_RECORDS)
+ {
+ return nullptr;
+ }
+ if (address == nullptr)
+ {
+ return nullptr;
}
- AZ_Assert(byteSize>sizeof(Debug::GuardValue), "Did you forget to add the extra MemoryGuardSize() bytes?");
- byteSize -= sizeof(Debug::GuardValue);
- new(reinterpret_cast(address)+byteSize) Debug::GuardValue();
- }
-
- Debug::AllocationRecordsType::pair_iter_bool iterBool;
- {
- AZStd::scoped_lock lock(m_recordsMutex);
- iterBool = m_records.insert_key(address);
- }
-
- if (!iterBool.second)
- {
- // If that memory address was already registered, print the stack trace of the previous registration
- PrintAllocationsCB(true, (m_saveNames || m_mode == RECORD_FULL))(address, iterBool.first->second, m_numStackLevels);
- AZ_Assert(iterBool.second, "Memory address 0x%p is already allocated and in the records!", address);
- }
-
- Debug::AllocationInfo& ai = iterBool.first->second;
- ai.m_byteSize = byteSize;
- ai.m_alignment = static_cast(alignment);
- if ((m_saveNames || m_mode == RECORD_FULL) && name && fileName)
- {
- // In RECORD_FULL mode or when specifically enabled in app descriptor with
- // m_allocationRecordsSaveNames, we allocate our own memory to save off name and fileName.
- // When testing for memory leaks, on process shutdown AllocationRecords::~AllocationRecords
- // gets called to enumerate the remaining (leaked) allocations. Unfortunately, any names
- // referenced in dynamic module memory whose modules are unloaded won't be valid
- // references anymore and we won't get useful information from the enumeration print.
- // This code block ensures we keep our name/fileName valid for when we need it.
- const size_t nameLength = strlen(name);
- const size_t fileNameLength = strlen(fileName);
- const size_t totalLength = nameLength + fileNameLength + 2; // + 2 for terminating null characters
- ai.m_namesBlock = m_records.get_allocator().allocate(totalLength, 1);
- ai.m_namesBlockSize = totalLength;
- char* savedName = reinterpret_cast(ai.m_namesBlock);
- char* savedFileName = savedName + nameLength + 1;
- memcpy(reinterpret_cast(savedName), reinterpret_cast(name), nameLength + 1);
- memcpy(reinterpret_cast(savedFileName), reinterpret_cast(fileName), fileNameLength + 1);
- ai.m_name = savedName;
- ai.m_fileName = savedFileName;
- }
- else
- {
- ai.m_name = name;
- ai.m_fileName = fileName;
- ai.m_namesBlock = nullptr;
- ai.m_namesBlockSize = 0;
- }
- ai.m_lineNum = lineNum;
- ai.m_timeStamp = AZStd::GetTimeNowMicroSecond();
-
- // if we don't have a fileName,lineNum record the stack or if the user requested it.
- if ((fileName == nullptr && m_mode == RECORD_STACK_IF_NO_FILE_LINE) || m_mode == RECORD_FULL)
- {
- ai.m_stackFrames = m_numStackLevels ? reinterpret_cast(m_records.get_allocator().allocate(sizeof(AZ::Debug::StackFrame)*m_numStackLevels, 1)) : nullptr;
- if (ai.m_stackFrames)
+ // memory guard
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
{
- Debug::StackRecorder::Record(ai.m_stackFrames, m_numStackLevels, stackSuppressCount + 1);
-
- if (m_decodeImmediately)
+ if (m_isAutoIntegrityCheck)
{
- // OPTIONAL DEBUGGING CODE - enable in app descriptor m_allocationRecordsAttemptDecodeImmediately
- // This is optionally-enabled code for tracking down memory allocations
- // that fail to be decoded. DecodeFrames() typically runs at the end of
- // your application when leaks were found. Sometimes you have stack prints
- // full of "(module-name not available)" and "(function-name not available)"
- // that are not actionable. If you have those, enable this code. It'll slow
- // down your process significantly because for every allocation recorded
- // we get the stack trace on the spot. Put a breakpoint in DecodeFrames()
- // at the "(module-name not available)" and "(function-name not available)"
- // locations and now at the moment those allocations happen you'll have the
- // full stack trace available and the ability to debug what could be causing it
+ IntegrityCheck();
+ }
+
+ AZ_Assert(byteSize > sizeof(Debug::GuardValue), "Did you forget to add the extra MemoryGuardSize() bytes?");
+ byteSize -= sizeof(Debug::GuardValue);
+ new (reinterpret_cast(address) + byteSize) Debug::GuardValue();
+ }
+
+ Debug::AllocationRecordsType::pair_iter_bool iterBool;
+ {
+ AZStd::scoped_lock lock(m_recordsMutex);
+ iterBool = m_records.insert_key(address);
+ }
+
+ if (!iterBool.second)
+ {
+ // If that memory address was already registered, print the stack trace of the previous registration
+ PrintAllocationsCB(true, (m_saveNames || m_mode == RECORD_FULL))(address, iterBool.first->second, m_numStackLevels);
+ AZ_Assert(iterBool.second, "Memory address 0x%p is already allocated and in the records!", address);
+ }
+
+ Debug::AllocationInfo& ai = iterBool.first->second;
+ ai.m_byteSize = byteSize;
+ ai.m_alignment = static_cast(alignment);
+ if ((m_saveNames || m_mode == RECORD_FULL) && name && fileName)
+ {
+ // In RECORD_FULL mode or when specifically enabled in app descriptor with
+ // m_allocationRecordsSaveNames, we allocate our own memory to save off name and fileName.
+ // When testing for memory leaks, on process shutdown AllocationRecords::~AllocationRecords
+ // gets called to enumerate the remaining (leaked) allocations. Unfortunately, any names
+ // referenced in dynamic module memory whose modules are unloaded won't be valid
+ // references anymore and we won't get useful information from the enumeration print.
+ // This code block ensures we keep our name/fileName valid for when we need it.
+ const size_t nameLength = strlen(name);
+ const size_t fileNameLength = strlen(fileName);
+ const size_t totalLength = nameLength + fileNameLength + 2; // + 2 for terminating null characters
+ ai.m_namesBlock = m_records.get_allocator().allocate(totalLength, 1);
+ ai.m_namesBlockSize = totalLength;
+ char* savedName = reinterpret_cast(ai.m_namesBlock);
+ char* savedFileName = savedName + nameLength + 1;
+ memcpy(reinterpret_cast(savedName), reinterpret_cast(name), nameLength + 1);
+ memcpy(reinterpret_cast(savedFileName), reinterpret_cast(fileName), fileNameLength + 1);
+ ai.m_name = savedName;
+ ai.m_fileName = savedFileName;
+ }
+ else
+ {
+ ai.m_name = name;
+ ai.m_fileName = fileName;
+ ai.m_namesBlock = nullptr;
+ ai.m_namesBlockSize = 0;
+ }
+ ai.m_lineNum = lineNum;
+ ai.m_timeStamp = AZStd::GetTimeNowMicroSecond();
+
+ // if we don't have a fileName,lineNum record the stack or if the user requested it.
+ if ((fileName == nullptr && m_mode == RECORD_STACK_IF_NO_FILE_LINE) || m_mode == RECORD_FULL)
+ {
+ ai.m_stackFrames = m_numStackLevels ? reinterpret_cast(m_records.get_allocator().allocate(
+ sizeof(AZ::Debug::StackFrame) * m_numStackLevels, 1))
+ : nullptr;
+ if (ai.m_stackFrames)
+ {
+ Debug::StackRecorder::Record(ai.m_stackFrames, m_numStackLevels, stackSuppressCount + 1);
+
+ if (m_decodeImmediately)
{
- const unsigned char decodeStep = 40;
- Debug::SymbolStorage::StackLine lines[decodeStep];
- unsigned char iFrame = 0;
- unsigned char numStackLevels = m_numStackLevels;
- while (numStackLevels > 0)
+ // OPTIONAL DEBUGGING CODE - enable in app descriptor m_allocationRecordsAttemptDecodeImmediately
+ // This is optionally-enabled code for tracking down memory allocations
+ // that fail to be decoded. DecodeFrames() typically runs at the end of
+ // your application when leaks were found. Sometimes you have stack prints
+ // full of "(module-name not available)" and "(function-name not available)"
+ // that are not actionable. If you have those, enable this code. It'll slow
+ // down your process significantly because for every allocation recorded
+ // we get the stack trace on the spot. Put a breakpoint in DecodeFrames()
+ // at the "(module-name not available)" and "(function-name not available)"
+ // locations and now at the moment those allocations happen you'll have the
+ // full stack trace available and the ability to debug what could be causing it
{
- unsigned char numToDecode = AZStd::GetMin(decodeStep, numStackLevels);
- Debug::SymbolStorage::DecodeFrames(&ai.m_stackFrames[iFrame], numToDecode, lines);
- numStackLevels -= numToDecode;
- iFrame += numToDecode;
+ const unsigned char decodeStep = 40;
+ Debug::SymbolStorage::StackLine lines[decodeStep];
+ unsigned char iFrame = 0;
+ unsigned char numStackLevels = m_numStackLevels;
+ while (numStackLevels > 0)
+ {
+ unsigned char numToDecode = AZStd::GetMin(decodeStep, numStackLevels);
+ Debug::SymbolStorage::DecodeFrames(&ai.m_stackFrames[iFrame], numToDecode, lines);
+ numStackLevels -= numToDecode;
+ iFrame += numToDecode;
+ }
}
}
}
}
+
+ AllocatorManager::Instance().DebugBreak(address, ai);
+
+ // statistics
+ m_requestedBytes += byteSize;
+
+ size_t currentRequestedBytePeak;
+ size_t newRequestedBytePeak;
+ do
+ {
+ currentRequestedBytePeak = m_requestedBytesPeak.load(std::memory_order::memory_order_relaxed);
+ newRequestedBytePeak = AZStd::GetMax(currentRequestedBytePeak, m_requestedBytes.load(std::memory_order::memory_order_relaxed));
+ } while (!m_requestedBytesPeak.compare_exchange_weak(currentRequestedBytePeak, newRequestedBytePeak));
+
+ ++m_requestedAllocs;
+
+ return &ai;
}
- AllocatorManager::Instance().DebugBreak(address, ai);
-
- // statistics
- m_requestedBytes += byteSize;
-
- size_t currentRequestedBytePeak;
- size_t newRequestedBytePeak;
- do
+ //=========================================================================
+ // UnregisterAllocation
+ // [9/11/2009]
+ //=========================================================================
+ void AllocationRecords::UnregisterAllocation(void* address, size_t byteSize, size_t alignment, AllocationInfo* info)
{
- currentRequestedBytePeak = m_requestedBytesPeak.load(std::memory_order::memory_order_relaxed);
- newRequestedBytePeak = AZStd::GetMax(currentRequestedBytePeak, m_requestedBytes.load(std::memory_order::memory_order_relaxed));
- } while (!m_requestedBytesPeak.compare_exchange_weak(currentRequestedBytePeak, newRequestedBytePeak));
-
- ++m_requestedAllocs;
-
- return &ai;
-}
-
-//=========================================================================
-// UnregisterAllocation
-// [9/11/2009]
-//=========================================================================
-void AllocationRecords::UnregisterAllocation(void* address, size_t byteSize, size_t alignment, AllocationInfo* info)
-{
- if (m_mode == RECORD_NO_RECORDS)
- {
- return;
- }
- if (address == nullptr)
- {
- return;
- }
-
- AllocationInfo allocationInfo;
- {
- AZStd::scoped_lock lock(m_recordsMutex);
- Debug::AllocationRecordsType::iterator iter = m_records.find(address);
- // We cannot assert if an allocation does not exist because allocations may have been made before tracking was enabled.
- // It is currently impossible to actually track all allocations that happen before a certain point
- // AZ_Assert(iter!=m_records.end(), "Could not find address 0x%p in the allocator!", address);
- if (iter == m_records.end())
+ if (m_mode == RECORD_NO_RECORDS)
{
return;
}
- allocationInfo = iter->second;
- m_records.erase(iter);
-
- // try to be more aggressive and keep the memory footprint low.
- // \todo store the load factor at the last rehash to avoid unnecessary rehash
- if (m_records.load_factor() < 0.9f)
+ if (address == nullptr)
{
- m_records.rehash(0);
+ return;
}
- }
-
- AllocatorManager::Instance().DebugBreak(address, allocationInfo);
-
- (void)byteSize;
- (void)alignment;
- AZ_Assert(byteSize==0||byteSize==allocationInfo.m_byteSize, "Mismatched byteSize at deallocation! You supplied an invalid value!");
- AZ_Assert(alignment==0||alignment==allocationInfo.m_alignment, "Mismatched alignment at deallocation! You supplied an invalid value!");
-
- // statistics
- m_requestedBytes -= allocationInfo.m_byteSize;
-
-#if defined(ENABLE_MEMORY_GUARD)
- // memory guard
- if (m_memoryGuardSize == sizeof(Debug::GuardValue))
- {
- if (m_isAutoIntegrityCheck)
- {
- // full integrity check
- IntegrityCheck();
- }
- else
- {
- // check current allocation
- char* guardAddress = reinterpret_cast(address)+allocationInfo.m_byteSize;
- Debug::GuardValue* guard = reinterpret_cast(guardAddress);
- if (!guard->Validate())
- {
- AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
- PrintAllocationsCB printAlloc(true);
- printAlloc(address, allocationInfo, m_numStackLevels);
- AZ_Assert(false, "MEMORY STOMP DETECTED!!!");
- }
- guard->~GuardValue();
- }
- }
-#endif
-
- // delete allocation record
- if (allocationInfo.m_namesBlock)
- {
- m_records.get_allocator().deallocate(allocationInfo.m_namesBlock, allocationInfo.m_namesBlockSize, 1);
- allocationInfo.m_namesBlock = nullptr;
- allocationInfo.m_namesBlockSize = 0;
- allocationInfo.m_name = nullptr;
- allocationInfo.m_fileName = nullptr;
- }
- if (allocationInfo.m_stackFrames)
- {
- m_records.get_allocator().deallocate(allocationInfo.m_stackFrames, sizeof(AZ::Debug::StackFrame)*m_numStackLevels, 1);
- allocationInfo.m_stackFrames = nullptr;
- }
-
- if (info)
- {
- *info = allocationInfo;
- }
-
-
-
- // if requested set memory to a specific value.
- if (m_isMarkUnallocatedMemory)
- {
- memset(address, GetUnallocatedMarkValue(), byteSize);
- }
-}
-
-//=========================================================================
-// ResizeAllocation
-// [9/20/2009]
-//=========================================================================
-void
-AllocationRecords::ResizeAllocation(void* address, size_t newSize)
-{
- if (m_mode == RECORD_NO_RECORDS)
- {
- return;
- }
-
- AllocationInfo* allocationInfo;
- {
- AZStd::scoped_lock lock(m_recordsMutex);
- Debug::AllocationRecordsType::iterator iter = m_records.find(address);
- AZ_Assert(iter != m_records.end(), "Could not find address 0x%p in the allocator!", address);
- allocationInfo = &iter->second;
- }
- AllocatorManager::Instance().DebugBreak(address, *allocationInfo);
-
-#if defined(ENABLE_MEMORY_GUARD)
- if (m_memoryGuardSize == sizeof(Debug::GuardValue))
- {
- if (m_isAutoIntegrityCheck)
- {
- // full integrity check
- IntegrityCheck();
- }
- else
- {
- // check memory guard
- char* guardAddress = reinterpret_cast(address) + allocationInfo->m_byteSize;
- Debug::GuardValue* guard = reinterpret_cast(guardAddress);
- if (!guard->Validate())
- {
- AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
- PrintAllocationsCB printAlloc(true);
- printAlloc(address, iter->second, m_numStackLevels);
- AZ_Assert(false, "MEMORY STOMP DETECTED!!!");
- }
- guard->~GuardValue();
- }
- // init the new memory guard
- newSize -= sizeof(Debug::GuardValue);
- new(reinterpret_cast(address)+newSize) Debug::GuardValue();
- }
-#endif
-
- // statistics
- m_requestedBytes -= allocationInfo->m_byteSize;
- m_requestedBytes += newSize;
- size_t currentRequestedBytePeak;
- size_t newRequestedBytePeak;
- do
- {
- currentRequestedBytePeak = m_requestedBytesPeak.load(std::memory_order::memory_order_relaxed);
- newRequestedBytePeak = AZStd::GetMax(currentRequestedBytePeak, m_requestedBytes.load(std::memory_order::memory_order_relaxed));
- } while (!m_requestedBytesPeak.compare_exchange_weak(currentRequestedBytePeak, newRequestedBytePeak));
- ++m_requestedAllocs;
-
- // update allocation size
- allocationInfo->m_byteSize = newSize;
-}
-
-//=========================================================================
-// EnumerateAllocations
-// [9/29/2009]
-//=========================================================================
-void
-AllocationRecords::SetMode(Mode mode)
-{
- if (mode == RECORD_NO_RECORDS)
- {
+ AllocationInfo allocationInfo;
{
AZStd::scoped_lock lock(m_recordsMutex);
- m_records.clear();
+ Debug::AllocationRecordsType::iterator iter = m_records.find(address);
+ // We cannot assert if an allocation does not exist because allocations may have been made before tracking was enabled.
+ // It is currently impossible to actually track all allocations that happen before a certain point
+ // AZ_Assert(iter!=m_records.end(), "Could not find address 0x%p in the allocator!", address);
+ if (iter == m_records.end())
+ {
+ return;
+ }
+ allocationInfo = iter->second;
+ m_records.erase(iter);
+
+ // try to be more aggressive and keep the memory footprint low.
+ // \todo store the load factor at the last rehash to avoid unnecessary rehash
+ if (m_records.load_factor() < 0.9f)
+ {
+ m_records.rehash(0);
+ }
}
- m_requestedBytes = 0;
- m_requestedBytesPeak = 0;
- m_requestedAllocs = 0;
- }
- AZ_Warning("Memory", m_mode != RECORD_NO_RECORDS || mode == RECORD_NO_RECORDS, "Records recording was disabled and now it's enabled! You might get assert when you free memory, if a you have allocations which were not recorded!");
+ AllocatorManager::Instance().DebugBreak(address, allocationInfo);
- m_mode = mode;
-}
+ (void)byteSize;
+ (void)alignment;
+ AZ_Assert(
+ byteSize == 0 || byteSize == allocationInfo.m_byteSize, "Mismatched byteSize at deallocation! You supplied an invalid value!");
+ AZ_Assert(
+ alignment == 0 || alignment == allocationInfo.m_alignment,
+ "Mismatched alignment at deallocation! You supplied an invalid value!");
-//=========================================================================
-// EnumerateAllocations
-// [9/29/2009]
-//=========================================================================
-void
-AllocationRecords::EnumerateAllocations(AllocationInfoCBType cb)
-{
- // enumerate all allocations and stop if requested.
- // Since allocations can change during the iteration (code that prints out the records could allocate, which will
- // mutate m_records), we are going to make a copy and iterate the copy.
- Debug::AllocationRecordsType recordsCopy;
- {
- AZStd::scoped_lock lock(m_recordsMutex);
- recordsCopy = m_records;
- }
- for (Debug::AllocationRecordsType::const_iterator iter = recordsCopy.begin(); iter != recordsCopy.end(); ++iter)
- {
- if (!cb(iter->first, iter->second, m_numStackLevels))
- {
- break;
- }
- }
-}
+ // statistics
+ m_requestedBytes -= allocationInfo.m_byteSize;
-//=========================================================================
-// IntegrityCheck
-// [9/9/2011]
-//=========================================================================
-void
-AllocationRecords::IntegrityCheck() const
-{
#if defined(ENABLE_MEMORY_GUARD)
- if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ // memory guard
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ {
+ if (m_isAutoIntegrityCheck)
+ {
+ // full integrity check
+ IntegrityCheck();
+ }
+ else
+ {
+ // check current allocation
+ char* guardAddress = reinterpret_cast(address) + allocationInfo.m_byteSize;
+ Debug::GuardValue* guard = reinterpret_cast(guardAddress);
+ if (!guard->Validate())
+ {
+ AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
+ PrintAllocationsCB printAlloc(true);
+ printAlloc(address, allocationInfo, m_numStackLevels);
+ AZ_Assert(false, "MEMORY STOMP DETECTED!!!");
+ }
+ guard->~GuardValue();
+ }
+ }
+#endif
+
+ // delete allocation record
+ if (allocationInfo.m_namesBlock)
+ {
+ m_records.get_allocator().deallocate(allocationInfo.m_namesBlock, allocationInfo.m_namesBlockSize, 1);
+ allocationInfo.m_namesBlock = nullptr;
+ allocationInfo.m_namesBlockSize = 0;
+ allocationInfo.m_name = nullptr;
+ allocationInfo.m_fileName = nullptr;
+ }
+ if (allocationInfo.m_stackFrames)
+ {
+ m_records.get_allocator().deallocate(allocationInfo.m_stackFrames, sizeof(AZ::Debug::StackFrame) * m_numStackLevels, 1);
+ allocationInfo.m_stackFrames = nullptr;
+ }
+
+ if (info)
+ {
+ *info = allocationInfo;
+ }
+
+ // if requested set memory to a specific value.
+ if (m_isMarkUnallocatedMemory)
+ {
+ memset(address, GetUnallocatedMarkValue(), byteSize);
+ }
+ }
+
+ //=========================================================================
+ // ResizeAllocation
+ // [9/20/2009]
+ //=========================================================================
+ void AllocationRecords::ResizeAllocation(void* address, size_t newSize)
{
+ if (m_mode == RECORD_NO_RECORDS)
+ {
+ return;
+ }
+
+ AllocationInfo* allocationInfo;
+ {
+ AZStd::scoped_lock lock(m_recordsMutex);
+ Debug::AllocationRecordsType::iterator iter = m_records.find(address);
+ AZ_Assert(iter != m_records.end(), "Could not find address 0x%p in the allocator!", address);
+ allocationInfo = &iter->second;
+ }
+ AllocatorManager::Instance().DebugBreak(address, *allocationInfo);
+
+#if defined(ENABLE_MEMORY_GUARD)
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ {
+ if (m_isAutoIntegrityCheck)
+ {
+ // full integrity check
+ IntegrityCheck();
+ }
+ else
+ {
+ // check memory guard
+ char* guardAddress = reinterpret_cast(address) + allocationInfo->m_byteSize;
+ Debug::GuardValue* guard = reinterpret_cast(guardAddress);
+ if (!guard->Validate())
+ {
+ AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
+ PrintAllocationsCB printAlloc(true);
+ printAlloc(address, iter->second, m_numStackLevels);
+ AZ_Assert(false, "MEMORY STOMP DETECTED!!!");
+ }
+ guard->~GuardValue();
+ }
+ // init the new memory guard
+ newSize -= sizeof(Debug::GuardValue);
+ new (reinterpret_cast(address) + newSize) Debug::GuardValue();
+ }
+#endif
+
+ // statistics
+ m_requestedBytes -= allocationInfo->m_byteSize;
+ m_requestedBytes += newSize;
+ size_t currentRequestedBytePeak;
+ size_t newRequestedBytePeak;
+ do
+ {
+ currentRequestedBytePeak = m_requestedBytesPeak.load(std::memory_order::memory_order_relaxed);
+ newRequestedBytePeak = AZStd::GetMax(currentRequestedBytePeak, m_requestedBytes.load(std::memory_order::memory_order_relaxed));
+ } while (!m_requestedBytesPeak.compare_exchange_weak(currentRequestedBytePeak, newRequestedBytePeak));
+ ++m_requestedAllocs;
+
+ // update allocation size
+ allocationInfo->m_byteSize = newSize;
+ }
+
+ //=========================================================================
+ // EnumerateAllocations
+ // [9/29/2009]
+ //=========================================================================
+ void AllocationRecords::SetMode(Mode mode)
+ {
+ if (mode == RECORD_NO_RECORDS)
+ {
+ {
+ AZStd::scoped_lock lock(m_recordsMutex);
+ m_records.clear();
+ }
+ m_requestedBytes = 0;
+ m_requestedBytesPeak = 0;
+ m_requestedAllocs = 0;
+ }
+
+ AZ_Warning(
+ "Memory", m_mode != RECORD_NO_RECORDS || mode == RECORD_NO_RECORDS,
+ "Records recording was disabled and now it's enabled! You might get assert when you free memory, if a you have allocations "
+ "which were not recorded!");
+
+ m_mode = mode;
+ }
+
+ //=========================================================================
+ // EnumerateAllocations
+ // [9/29/2009]
+ //=========================================================================
+ void AllocationRecords::EnumerateAllocations(AllocationInfoCBType cb)
+ {
+ // enumerate all allocations and stop if requested.
+ // Since allocations can change during the iteration (code that prints out the records could allocate, which will
+ // mutate m_records), we are going to make a copy and iterate the copy.
Debug::AllocationRecordsType recordsCopy;
{
AZStd::scoped_lock lock(m_recordsMutex);
@@ -455,67 +438,93 @@ AllocationRecords::IntegrityCheck() const
}
for (Debug::AllocationRecordsType::const_iterator iter = recordsCopy.begin(); iter != recordsCopy.end(); ++iter)
{
- // check memory guard
- const char* guardAddress = reinterpret_cast(iter->first)+ iter->second.m_byteSize;
- if (!reinterpret_cast(guardAddress)->Validate())
+ if (!cb(iter->first, iter->second, m_numStackLevels))
{
- // We have to turn off the integrity check at this point if we want to succesfully report the memory
- // stomp we just found. If we don't turn this off, the printf just winds off the stack as each memory
- // allocation done therein recurses this same code.
- *const_cast(&m_isAutoIntegrityCheck) = false;
- AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
- PrintAllocationsCB printAlloc(true);
- printAlloc(iter->first, iter->second, m_numStackLevels);
- AZ_Error("Memory", false, "MEMORY STOMP DETECTED!!!");
+ break;
}
}
}
-#endif
-}
-//=========================================================================
-// operator()
-// [9/29/2009]
-//=========================================================================
-bool
-PrintAllocationsCB::operator()(void* address, const AllocationInfo& info, unsigned char numStackLevels)
-{
- if (m_includeNameAndFilename && info.m_name)
+ //=========================================================================
+ // IntegrityCheck
+ // [9/9/2011]
+ //=========================================================================
+ void AllocationRecords::IntegrityCheck() const
{
- AZ_Printf("Memory", "Allocation Name: \"%s\" Addr: 0%p Size: %d Alignment: %d\n", info.m_name, address, info.m_byteSize, info.m_alignment);
- }
- else
- {
- AZ_Printf("Memory", "Allocation Addr: 0%p Size: %d Alignment: %d\n", address, info.m_byteSize, info.m_alignment);
- }
-
- if (m_isDetailed)
- {
- if (!info.m_stackFrames)
+#if defined(ENABLE_MEMORY_GUARD)
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
{
- AZ_Printf("Memory", " %s (%d)\n", info.m_fileName, info.m_lineNum);
+ Debug::AllocationRecordsType recordsCopy;
+ {
+ AZStd::scoped_lock lock(m_recordsMutex);
+ recordsCopy = m_records;
+ }
+ for (Debug::AllocationRecordsType::const_iterator iter = recordsCopy.begin(); iter != recordsCopy.end(); ++iter)
+ {
+ // check memory guard
+ const char* guardAddress = reinterpret_cast(iter->first) + iter->second.m_byteSize;
+ if (!reinterpret_cast(guardAddress)->Validate())
+ {
+ // We have to turn off the integrity check at this point if we want to succesfully report the memory
+ // stomp we just found. If we don't turn this off, the printf just winds off the stack as each memory
+ // allocation done therein recurses this same code.
+ *const_cast(&m_isAutoIntegrityCheck) = false;
+ AZ_Printf("Memory", "Memory stomp located at address %p, part of allocation:", guardAddress);
+ PrintAllocationsCB printAlloc(true);
+ printAlloc(iter->first, iter->second, m_numStackLevels);
+ AZ_Error("Memory", false, "MEMORY STOMP DETECTED!!!");
+ }
+ }
+ }
+#endif
+ }
+
+ //=========================================================================
+ // operator()
+ // [9/29/2009]
+ //=========================================================================
+ bool PrintAllocationsCB::operator()(void* address, const AllocationInfo& info, unsigned char numStackLevels)
+ {
+ if (m_includeNameAndFilename && info.m_name)
+ {
+ AZ_Printf(
+ "Memory", "Allocation Name: \"%s\" Addr: 0%p Size: %d Alignment: %d\n", info.m_name, address, info.m_byteSize,
+ info.m_alignment);
}
else
{
- // Allocation callstack
- const unsigned char decodeStep = 40;
- Debug::SymbolStorage::StackLine lines[decodeStep];
- unsigned char iFrame = 0;
- while (numStackLevels>0)
+ AZ_Printf("Memory", "Allocation Addr: 0%p Size: %d Alignment: %d\n", address, info.m_byteSize, info.m_alignment);
+ }
+
+ if (m_isDetailed)
+ {
+ if (!info.m_stackFrames)
{
- unsigned char numToDecode = AZStd::GetMin(decodeStep, numStackLevels);
- Debug::SymbolStorage::DecodeFrames(&info.m_stackFrames[iFrame], numToDecode, lines);
- for (unsigned char i = 0; i < numToDecode; ++i)
+ AZ_Printf("Memory", " %s (%d)\n", info.m_fileName, info.m_lineNum);
+ }
+ else
+ {
+ // Allocation callstack
+ const unsigned char decodeStep = 40;
+ Debug::SymbolStorage::StackLine lines[decodeStep];
+ unsigned char iFrame = 0;
+ while (numStackLevels > 0)
{
- if (info.m_stackFrames[iFrame+i].IsValid())
+ unsigned char numToDecode = AZStd::GetMin(decodeStep, numStackLevels);
+ Debug::SymbolStorage::DecodeFrames(&info.m_stackFrames[iFrame], numToDecode, lines);
+ for (unsigned char i = 0; i < numToDecode; ++i)
{
- AZ_Printf("Memory", " %s\n", lines[i]);
+ if (info.m_stackFrames[iFrame + i].IsValid())
+ {
+ AZ_Printf("Memory", " %s\n", lines[i]);
+ }
}
+ numStackLevels -= numToDecode;
+ iFrame += numToDecode;
}
- numStackLevels -= numToDecode;
- iFrame += numToDecode;
}
}
+ return true; // continue enumerating
}
- return true; // continue enumerating
-}
+
+} // namespace AZ::Debug
diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp
index 61e883bb4e..5c510f67c1 100644
--- a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp
@@ -6,194 +6,203 @@
*
*/
-#include
#include
+#include
-using namespace AZ;
-
-AllocatorBase::AllocatorBase(IAllocatorAllocate* allocationSource, const char* name, const char* desc) :
- IAllocator(allocationSource),
- m_name(name),
- m_desc(desc)
+namespace AZ
{
-}
-
-AllocatorBase::~AllocatorBase()
-{
- AZ_Assert(!m_isReady, "Allocator %s (%s) is being destructed without first having gone through proper calls to PreDestroy() and Destroy(). Use AllocatorInstance<> for global allocators or AllocatorWrapper<> for local allocators.", m_name, m_desc);
-}
-
-const char* AllocatorBase::GetName() const
-{
- return m_name;
-}
-
-const char* AllocatorBase::GetDescription() const
-{
- return m_desc;
-}
-
-IAllocatorAllocate* AllocatorBase::GetSchema()
-{
- return nullptr;
-}
-
-Debug::AllocationRecords* AllocatorBase::GetRecords()
-{
- return m_records;
-}
-
-void AllocatorBase::SetRecords(Debug::AllocationRecords* records)
-{
- m_records = records;
- m_memoryGuardSize = records ? records->MemoryGuardSize() : 0;
-}
-
-bool AllocatorBase::IsReady() const
-{
- return m_isReady;
-}
-
-bool AllocatorBase::CanBeOverridden() const
-{
- return m_canBeOverridden;
-}
-
-void AllocatorBase::PostCreate()
-{
- if (m_registrationEnabled)
+ AllocatorBase::AllocatorBase(IAllocatorAllocate* allocationSource, const char* name, const char* desc)
+ : IAllocator(allocationSource)
+ , m_name(name)
+ , m_desc(desc)
{
- if (AZ::Environment::IsReady())
+ }
+
+ AllocatorBase::~AllocatorBase()
+ {
+ AZ_Assert(
+ !m_isReady,
+ "Allocator %s (%s) is being destructed without first having gone through proper calls to PreDestroy() and Destroy(). Use "
+ "AllocatorInstance<> for global allocators or AllocatorWrapper<> for local allocators.",
+ m_name, m_desc);
+ }
+
+ const char* AllocatorBase::GetName() const
+ {
+ return m_name;
+ }
+
+ const char* AllocatorBase::GetDescription() const
+ {
+ return m_desc;
+ }
+
+ IAllocatorAllocate* AllocatorBase::GetSchema()
+ {
+ return nullptr;
+ }
+
+ Debug::AllocationRecords* AllocatorBase::GetRecords()
+ {
+ return m_records;
+ }
+
+ void AllocatorBase::SetRecords(Debug::AllocationRecords* records)
+ {
+ m_records = records;
+ m_memoryGuardSize = records ? records->MemoryGuardSize() : 0;
+ }
+
+ bool AllocatorBase::IsReady() const
+ {
+ return m_isReady;
+ }
+
+ bool AllocatorBase::CanBeOverridden() const
+ {
+ return m_canBeOverridden;
+ }
+
+ void AllocatorBase::PostCreate()
+ {
+ if (m_registrationEnabled)
{
- AllocatorManager::Instance().RegisterAllocator(this);
+ if (AZ::Environment::IsReady())
+ {
+ AllocatorManager::Instance().RegisterAllocator(this);
+ }
+ else
+ {
+ AllocatorManager::PreRegisterAllocator(this);
+ }
}
- else
+
+ const auto debugConfig = GetDebugConfig();
+ if (!debugConfig.m_excludeFromDebugging)
{
- AllocatorManager::PreRegisterAllocator(this);
+ SetRecords(aznew Debug::AllocationRecords(
+ (unsigned char)debugConfig.m_stackRecordLevels, debugConfig.m_usesMemoryGuards, debugConfig.m_marksUnallocatedMemory,
+ GetName()));
}
+
+ m_isReady = true;
}
- const auto debugConfig = GetDebugConfig();
- if (!debugConfig.m_excludeFromDebugging)
+ void AllocatorBase::PreDestroy()
{
- SetRecords(aznew Debug::AllocationRecords((unsigned char)debugConfig.m_stackRecordLevels, debugConfig.m_usesMemoryGuards, debugConfig.m_marksUnallocatedMemory, GetName()));
+ Debug::AllocationRecords* allocatorRecords = GetRecords();
+ if (allocatorRecords)
+ {
+ delete allocatorRecords;
+ SetRecords(nullptr);
+ }
+
+ if (m_registrationEnabled && AZ::AllocatorManager::IsReady())
+ {
+ AllocatorManager::Instance().UnRegisterAllocator(this);
+ }
+
+ m_isReady = false;
}
- m_isReady = true;
-}
-
-void AllocatorBase::PreDestroy()
-{
- Debug::AllocationRecords* allocatorRecords = GetRecords();
- if(allocatorRecords)
+ void AllocatorBase::SetLazilyCreated(bool lazy)
{
- delete allocatorRecords;
- SetRecords(nullptr);
+ m_isLazilyCreated = lazy;
}
- if (m_registrationEnabled && AZ::AllocatorManager::IsReady())
+ bool AllocatorBase::IsLazilyCreated() const
{
- AllocatorManager::Instance().UnRegisterAllocator(this);
+ return m_isLazilyCreated;
}
- m_isReady = false;
-}
+ void AllocatorBase::SetProfilingActive(bool active)
+ {
+ m_isProfilingActive = active;
+ }
-void AllocatorBase::SetLazilyCreated(bool lazy)
-{
- m_isLazilyCreated = lazy;
-}
+ bool AllocatorBase::IsProfilingActive() const
+ {
+ return m_isProfilingActive;
+ }
-bool AllocatorBase::IsLazilyCreated() const
-{
- return m_isLazilyCreated;
-}
+ void AllocatorBase::DisableOverriding()
+ {
+ m_canBeOverridden = false;
+ }
-void AllocatorBase::SetProfilingActive(bool active)
-{
- m_isProfilingActive = active;
-}
+ void AllocatorBase::DisableRegistration()
+ {
+ m_registrationEnabled = false;
+ }
-bool AllocatorBase::IsProfilingActive() const
-{
- return m_isProfilingActive;
-}
-
-void AllocatorBase::DisableOverriding()
-{
- m_canBeOverridden = false;
-}
-
-void AllocatorBase::DisableRegistration()
-{
- m_registrationEnabled = false;
-}
-
-void AllocatorBase::ProfileAllocation(void* ptr, size_t byteSize, size_t alignment, const char* name, const char* fileName, int lineNum, int suppressStackRecord)
-{
+ void AllocatorBase::ProfileAllocation(
+ void* ptr, size_t byteSize, size_t alignment, const char* name, const char* fileName, int lineNum, int suppressStackRecord)
+ {
#if defined(AZ_HAS_VARIADIC_TEMPLATES) && defined(AZ_DEBUG_BUILD)
- ++suppressStackRecord; // one more for the fact the ebus is a function
+ ++suppressStackRecord; // one more for the fact the ebus is a function
#endif // AZ_HAS_VARIADIC_TEMPLATES
- if (m_isProfilingActive)
- {
- auto records = GetRecords();
- if (records)
+ if (m_isProfilingActive)
{
- records->RegisterAllocation(ptr, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1);
+ auto records = GetRecords();
+ if (records)
+ {
+ records->RegisterAllocation(ptr, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1);
+ }
}
}
-}
-void AllocatorBase::ProfileDeallocation(void* ptr, size_t byteSize, size_t alignment, Debug::AllocationInfo* info)
-{
- if (m_isProfilingActive)
+ void AllocatorBase::ProfileDeallocation(void* ptr, size_t byteSize, size_t alignment, Debug::AllocationInfo* info)
{
- auto records = GetRecords();
- if (records)
+ if (m_isProfilingActive)
{
- records->UnregisterAllocation(ptr, byteSize, alignment, info);
+ auto records = GetRecords();
+ if (records)
+ {
+ records->UnregisterAllocation(ptr, byteSize, alignment, info);
+ }
}
}
-}
-void AllocatorBase::ProfileReallocationBegin([[maybe_unused]] void* ptr, [[maybe_unused]] size_t newSize)
-{
-}
-
-void AllocatorBase::ProfileReallocationEnd(void* ptr, void* newPtr, size_t newSize, size_t newAlignment)
-{
- if (m_isProfilingActive)
+ void AllocatorBase::ProfileReallocationBegin([[maybe_unused]] void* ptr, [[maybe_unused]] size_t newSize)
{
- Debug::AllocationInfo info;
- ProfileDeallocation(ptr, 0, 0, &info);
- ProfileAllocation(newPtr, newSize, newAlignment, info.m_name, info.m_fileName, info.m_lineNum, 0);
}
-}
-void AllocatorBase::ProfileReallocation(void* ptr, void* newPtr, size_t newSize, size_t newAlignment)
-{
- ProfileReallocationEnd(ptr, newPtr, newSize, newAlignment);
-}
-
-void AllocatorBase::ProfileResize(void* ptr, size_t newSize)
-{
- if (newSize && m_isProfilingActive)
+ void AllocatorBase::ProfileReallocationEnd(void* ptr, void* newPtr, size_t newSize, size_t newAlignment)
{
- auto records = GetRecords();
- if (records)
+ if (m_isProfilingActive)
{
- records->ResizeAllocation(ptr, newSize);
+ Debug::AllocationInfo info;
+ ProfileDeallocation(ptr, 0, 0, &info);
+ ProfileAllocation(newPtr, newSize, newAlignment, info.m_name, info.m_fileName, info.m_lineNum, 0);
}
}
-}
-bool AllocatorBase::OnOutOfMemory(size_t byteSize, size_t alignment, int flags, const char* name, const char* fileName, int lineNum)
-{
- if (AllocatorManager::IsReady() && AllocatorManager::Instance().m_outOfMemoryListener)
+ void AllocatorBase::ProfileReallocation(void* ptr, void* newPtr, size_t newSize, size_t newAlignment)
{
- AllocatorManager::Instance().m_outOfMemoryListener(this, byteSize, alignment, flags, name, fileName, lineNum);
- return true;
+ ProfileReallocationEnd(ptr, newPtr, newSize, newAlignment);
}
- return false;
-}
+
+ void AllocatorBase::ProfileResize(void* ptr, size_t newSize)
+ {
+ if (newSize && m_isProfilingActive)
+ {
+ auto records = GetRecords();
+ if (records)
+ {
+ records->ResizeAllocation(ptr, newSize);
+ }
+ }
+ }
+
+ bool AllocatorBase::OnOutOfMemory(size_t byteSize, size_t alignment, int flags, const char* name, const char* fileName, int lineNum)
+ {
+ if (AllocatorManager::IsReady() && AllocatorManager::Instance().m_outOfMemoryListener)
+ {
+ AllocatorManager::Instance().m_outOfMemoryListener(this, byteSize, alignment, flags, name, fileName, lineNum);
+ return true;
+ }
+ return false;
+ }
+
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp
index 30b0b78fe5..d55ca8b695 100644
--- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp
@@ -13,186 +13,182 @@
#include
-using namespace AZ;
-
-//=========================================================================
-// BestFitExternalMapAllocator
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::BestFitExternalMapAllocator()
- : AllocatorBase(this, "BestFitExternalMapAllocator", "Best fit allocator with external tracking storage!")
- , m_schema(nullptr)
-{}
-
-//=========================================================================
-// Create
-// [1/28/2011]
-//=========================================================================
-bool
-BestFitExternalMapAllocator::Create(const Descriptor& desc)
+namespace AZ
{
- AZ_Assert(IsReady() == false, "BestFitExternalMapAllocator was already created!");
- if (IsReady())
+ //=========================================================================
+ // BestFitExternalMapAllocator
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::BestFitExternalMapAllocator()
+ : AllocatorBase(this, "BestFitExternalMapAllocator", "Best fit allocator with external tracking storage!")
+ , m_schema(nullptr)
{
- return false;
}
- bool isReady = true;
-
- m_desc = desc;
- BestFitExternalMapSchema::Descriptor schemaDesc;
- schemaDesc.m_mapAllocator = desc.m_mapAllocator;
- schemaDesc.m_memoryBlock = desc.m_memoryBlock;
- schemaDesc.m_memoryBlockByteSize = desc.m_memoryBlockByteSize;
-
- m_schema = azcreate(BestFitExternalMapSchema, (schemaDesc), SystemAllocator);
- if (m_schema == nullptr)
+ //=========================================================================
+ // Create
+ // [1/28/2011]
+ //=========================================================================
+ bool BestFitExternalMapAllocator::Create(const Descriptor& desc)
{
- isReady = false;
+ AZ_Assert(IsReady() == false, "BestFitExternalMapAllocator was already created!");
+ if (IsReady())
+ {
+ return false;
+ }
+
+ bool isReady = true;
+
+ m_desc = desc;
+ BestFitExternalMapSchema::Descriptor schemaDesc;
+ schemaDesc.m_mapAllocator = desc.m_mapAllocator;
+ schemaDesc.m_memoryBlock = desc.m_memoryBlock;
+ schemaDesc.m_memoryBlockByteSize = desc.m_memoryBlockByteSize;
+
+ m_schema = azcreate(BestFitExternalMapSchema, (schemaDesc), SystemAllocator);
+ if (m_schema == nullptr)
+ {
+ isReady = false;
+ }
+
+ return isReady;
}
- return isReady;
-}
+ //=========================================================================
+ // Destroy
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapAllocator::Destroy()
+ {
+ azdestroy(m_schema, SystemAllocator);
+ m_schema = nullptr;
+ }
-//=========================================================================
-// Destroy
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapAllocator::Destroy()
-{
- azdestroy(m_schema, SystemAllocator);
- m_schema = nullptr;
-}
+ AllocatorDebugConfig BestFitExternalMapAllocator::GetDebugConfig()
+ {
+ return AllocatorDebugConfig()
+ .ExcludeFromDebugging(!m_desc.m_allocationRecords)
+ .StackRecordLevels(m_desc.m_stackRecordLevels)
+ .MarksUnallocatedMemory(false)
+ .UsesMemoryGuards(false);
+ }
-AllocatorDebugConfig BestFitExternalMapAllocator::GetDebugConfig()
-{
- return AllocatorDebugConfig()
- .ExcludeFromDebugging(!m_desc.m_allocationRecords)
- .StackRecordLevels(m_desc.m_stackRecordLevels)
- .MarksUnallocatedMemory(false)
- .UsesMemoryGuards(false);
-}
+ //=========================================================================
+ // Allocate
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::pointer_type BestFitExternalMapAllocator::Allocate(
+ size_type byteSize,
+ size_type alignment,
+ int flags,
+ [[maybe_unused]] const char* name,
+ [[maybe_unused]] const char* fileName,
+ [[maybe_unused]] int lineNum,
+ unsigned int suppressStackRecord)
+ {
+ (void)suppressStackRecord;
-//=========================================================================
-// Allocate
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::pointer_type BestFitExternalMapAllocator::Allocate(
- size_type byteSize,
- size_type alignment,
- int flags,
- [[maybe_unused]] const char* name,
- [[maybe_unused]] const char* fileName,
- [[maybe_unused]] int lineNum,
- unsigned int suppressStackRecord)
-{
- (void)suppressStackRecord;
+ AZ_Assert(byteSize > 0, "You can not allocate 0 bytes!");
+ AZ_Assert((alignment & (alignment - 1)) == 0, "Alignment must be power of 2!");
+ byteSize = MemorySizeAdjustedUp(byteSize);
- AZ_Assert(byteSize > 0, "You can not allocate 0 bytes!");
- AZ_Assert((alignment & (alignment - 1)) == 0, "Alignment must be power of 2!");
- byteSize = MemorySizeAdjustedUp(byteSize);
+ BestFitExternalMapAllocator::pointer_type address = m_schema->Allocate(byteSize, alignment, flags);
+ AZ_Assert(
+ address != nullptr, "BestFitExternalMapAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!",
+ byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum);
+ AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1));
- BestFitExternalMapAllocator::pointer_type address = m_schema->Allocate(byteSize, alignment, flags);
- AZ_Assert(address != nullptr, "BestFitExternalMapAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum);
- AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1));
+ return address;
+ }
- return address;
-}
+ //=========================================================================
+ // DeAllocate
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapAllocator::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ byteSize = MemorySizeAdjustedUp(byteSize);
+ AZ_MEMORY_PROFILE(ProfileDeallocation(ptr, byteSize, alignment, nullptr));
-//=========================================================================
-// DeAllocate
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapAllocator::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
-{
- byteSize = MemorySizeAdjustedUp(byteSize);
- AZ_MEMORY_PROFILE(ProfileDeallocation(ptr, byteSize, alignment, nullptr));
+ (void)byteSize;
+ (void)alignment;
+ m_schema->DeAllocate(ptr);
+ }
- (void)byteSize;
- (void)alignment;
- m_schema->DeAllocate(ptr);
-}
+ //=========================================================================
+ // Resize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::Resize(pointer_type ptr, size_type newSize)
+ {
+ (void)ptr;
+ (void)newSize;
+ /* todo */
+ return 0;
+ }
-//=========================================================================
-// Resize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::size_type
-BestFitExternalMapAllocator::Resize(pointer_type ptr, size_type newSize)
-{
- (void)ptr;
- (void)newSize;
- /* todo */
- return 0;
-}
+ //=========================================================================
+ // ReAllocate
+ // [9/13/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::pointer_type BestFitExternalMapAllocator::ReAllocate(
+ pointer_type ptr, size_type newSize, size_type newAlignment)
+ {
+ (void)ptr;
+ (void)newSize;
+ (void)newAlignment;
+ AZ_Assert(false, "Not supported!");
+ return nullptr;
+ }
-//=========================================================================
-// ReAllocate
-// [9/13/2011]
-//=========================================================================
-BestFitExternalMapAllocator::pointer_type
-BestFitExternalMapAllocator::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
-{
- (void)ptr;
- (void)newSize;
- (void)newAlignment;
- AZ_Assert(false, "Not supported!");
- return nullptr;
-}
+ //=========================================================================
+ // AllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::AllocationSize(pointer_type ptr)
+ {
+ return MemorySizeAdjustedDown(m_schema->AllocationSize(ptr));
+ }
-//=========================================================================
-// AllocationSize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::size_type
-BestFitExternalMapAllocator::AllocationSize(pointer_type ptr)
-{
- return MemorySizeAdjustedDown(m_schema->AllocationSize(ptr));
-}
+ //=========================================================================
+ // NumAllocatedBytes
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::NumAllocatedBytes() const
+ {
+ return m_schema->NumAllocatedBytes();
+ }
-//=========================================================================
-// NumAllocatedBytes
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::size_type
-BestFitExternalMapAllocator::NumAllocatedBytes() const
-{
- return m_schema->NumAllocatedBytes();
-}
+ //=========================================================================
+ // Capacity
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::Capacity() const
+ {
+ return m_schema->Capacity();
+ }
-//=========================================================================
-// Capacity
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::size_type
-BestFitExternalMapAllocator::Capacity() const
-{
- return m_schema->Capacity();
-}
+ //=========================================================================
+ // GetMaxAllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::GetMaxAllocationSize() const
+ {
+ return m_schema->GetMaxAllocationSize();
+ }
-//=========================================================================
-// GetMaxAllocationSize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapAllocator::size_type
-BestFitExternalMapAllocator::GetMaxAllocationSize() const
-{
- return m_schema->GetMaxAllocationSize();
-}
+ auto BestFitExternalMapAllocator::GetMaxContiguousAllocationSize() const -> size_type
+ {
+ return m_schema->GetMaxContiguousAllocationSize();
+ }
-auto BestFitExternalMapAllocator::GetMaxContiguousAllocationSize() const -> size_type
-{
- return m_schema->GetMaxContiguousAllocationSize();
-}
+ //=========================================================================
+ // GetSubAllocator
+ // [1/28/2011]
+ //=========================================================================
+ IAllocatorAllocate* BestFitExternalMapAllocator::GetSubAllocator()
+ {
+ return m_schema->GetSubAllocator();
+ }
-//=========================================================================
-// GetSubAllocator
-// [1/28/2011]
-//=========================================================================
-IAllocatorAllocate*
-BestFitExternalMapAllocator::GetSubAllocator()
-{
- return m_schema->GetSubAllocator();
-}
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h
index 17425625b7..90e2056d65 100644
--- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h
+++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h
@@ -5,8 +5,7 @@
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
-#ifndef AZ_BEST_FIT_EXT_MAP_ALLOCATOR_H
-#define AZ_BEST_FIT_EXT_MAP_ALLOCATOR_H
+#pragma once
#include
@@ -76,7 +75,3 @@ namespace AZ
};
}
-#endif // AZ_BEST_FIT_EXT_MAP_ALLOCATOR_H
-#pragma once
-
-
diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp
index 715ecd221e..841f36f58a 100644
--- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp
@@ -9,194 +9,199 @@
#include
#include
-using namespace AZ;
-
-//=========================================================================
-// BestFitExternalMapSchema
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapSchema::BestFitExternalMapSchema(const Descriptor& desc)
- : m_desc(desc)
- , m_used(0)
- , m_freeChunksMap(FreeMapType::key_compare(), AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get()))
- , m_allocChunksMap(AllocMapType::hasher(), AllocMapType::key_eq(), AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get()))
+namespace AZ
{
- if (m_desc.m_mapAllocator == nullptr)
+ //=========================================================================
+ // BestFitExternalMapSchema
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::BestFitExternalMapSchema(const Descriptor& desc)
+ : m_desc(desc)
+ , m_used(0)
+ , m_freeChunksMap(
+ FreeMapType::key_compare(),
+ AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get()))
+ , m_allocChunksMap(
+ AllocMapType::hasher(),
+ AllocMapType::key_eq(),
+ AZStdIAllocator(desc.m_mapAllocator != nullptr ? desc.m_mapAllocator : &AllocatorInstance::Get()))
{
- m_desc.m_mapAllocator = &AllocatorInstance::Get(); // used as our sub allocator
- }
- AZ_Assert(m_desc.m_memoryBlockByteSize > 0, "You must provide memory block size!");
- AZ_Assert(m_desc.m_memoryBlock != nullptr, "You must provide memory block allocated as you with!");
- //if( m_desc.m_memoryBlock == NULL) there is no point to automate this cause we need to flag this memory special, otherwise there is no point to use this allocator at all
- // m_desc.m_memoryBlock = azmalloc(SystemAllocator,m_desc.m_memoryBlockByteSize,16);
- m_freeChunksMap.insert(AZStd::make_pair(m_desc.m_memoryBlockByteSize, reinterpret_cast(m_desc.m_memoryBlock)));
-}
-
-//=========================================================================
-// Allocate
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapSchema::pointer_type
-BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int flags)
-{
- (void)flags;
- char* address = nullptr;
- AZ_Assert(alignment > 0 && (alignment & (alignment - 1)) == 0, "Alignment must be >0 and power of 2!");
- for (int i = 0; i < 2; ++i) // max 2 attempts to allocate
- {
- FreeMapType::iterator iter = m_freeChunksMap.find(byteSize);
- size_t blockSize = 0;
- char* blockAddress = nullptr;
- size_t preAllocBlockSize = 0;
- while (iter != m_freeChunksMap.end())
+ if (m_desc.m_mapAllocator == nullptr)
{
- blockSize = iter->first;
- blockAddress = iter->second;
- char* alignedAddr = PointerAlignUp(blockAddress, alignment);
- preAllocBlockSize = alignedAddr - blockAddress;
- if (preAllocBlockSize + byteSize <= blockSize)
- {
- m_freeChunksMap.erase(iter); // we have our allocation
- m_used += byteSize;
- address = alignedAddr;
- m_allocChunksMap.insert(AZStd::make_pair(address, byteSize));
- break;
- }
- ++iter;
+ m_desc.m_mapAllocator = &AllocatorInstance::Get(); // used as our sub allocator
}
- if (address != nullptr)
+ AZ_Assert(m_desc.m_memoryBlockByteSize > 0, "You must provide memory block size!");
+ AZ_Assert(m_desc.m_memoryBlock != nullptr, "You must provide memory block allocated as you with!");
+ // if( m_desc.m_memoryBlock == NULL) there is no point to automate this cause we need to flag this memory special, otherwise there
+ // is no point to use this allocator at all
+ // m_desc.m_memoryBlock = azmalloc(SystemAllocator,m_desc.m_memoryBlockByteSize,16);
+ m_freeChunksMap.insert(AZStd::make_pair(m_desc.m_memoryBlockByteSize, reinterpret_cast(m_desc.m_memoryBlock)));
+ }
+
+ //=========================================================================
+ // Allocate
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::pointer_type BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int flags)
+ {
+ (void)flags;
+ char* address = nullptr;
+ AZ_Assert(alignment > 0 && (alignment & (alignment - 1)) == 0, "Alignment must be >0 and power of 2!");
+ for (int i = 0; i < 2; ++i) // max 2 attempts to allocate
{
- // split blocks
- if (preAllocBlockSize) // if we have a block before the alignment
+ FreeMapType::iterator iter = m_freeChunksMap.find(byteSize);
+ size_t blockSize = 0;
+ char* blockAddress = nullptr;
+ size_t preAllocBlockSize = 0;
+ while (iter != m_freeChunksMap.end())
{
- m_freeChunksMap.insert(AZStd::make_pair(preAllocBlockSize, blockAddress));
- }
- size_t postAllocBlockSize = blockSize - preAllocBlockSize - byteSize;
- if (postAllocBlockSize)
- {
- m_freeChunksMap.insert(AZStd::make_pair(postAllocBlockSize, address + byteSize));
- }
-
- break;
- }
- else
- {
- GarbageCollect();
- }
- }
- return address;
-}
-
-//=========================================================================
-// DeAllocate
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapSchema::DeAllocate(pointer_type ptr)
-{
- if (ptr == nullptr)
- {
- return;
- }
- AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
- if (iter != m_allocChunksMap.end())
- {
- m_used -= iter->second;
- m_freeChunksMap.insert(AZStd::make_pair(iter->second, iter->first));
- m_allocChunksMap.erase(iter);
- }
-}
-
-//=========================================================================
-// AllocationSize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapSchema::size_type
-BestFitExternalMapSchema::AllocationSize(pointer_type ptr)
-{
- AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
- if (iter != m_allocChunksMap.end())
- {
- return iter->second;
- }
- return 0;
-}
-
-//=========================================================================
-// GetMaxAllocationSize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapSchema::size_type
-BestFitExternalMapSchema::GetMaxAllocationSize() const
-{
- if (!m_freeChunksMap.empty())
- {
- return m_freeChunksMap.rbegin()->first;
- }
- return 0;
-}
-
-auto BestFitExternalMapSchema::GetMaxContiguousAllocationSize() const -> size_type
-{
- // Return the maximum size of any single allocation
- return AZ_CORE_MAX_ALLOCATOR_SIZE;
-}
-
-//=========================================================================
-// GarbageCollect
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapSchema::GarbageCollect()
-{
- for (FreeMapType::iterator curBlock = m_freeChunksMap.begin(); curBlock != m_freeChunksMap.end(); )
- {
- char* curStart = curBlock->second;
- char* curEnd = curStart + curBlock->first;
- bool isMerge = false;
- for (FreeMapType::iterator nextBlock = curBlock++; nextBlock != m_freeChunksMap.end(); )
- {
- char* nextStart = nextBlock->second;
- char* nextEnd = nextStart + nextBlock->first;
- if (curStart == nextEnd)
- {
- // merge
- size_t newBlockSize = curBlock->first + nextBlock->first;
- char* newBlockAddress = nextStart;
- m_freeChunksMap.erase(nextBlock);
- FreeMapType::iterator toErase = curBlock;
- ++curBlock;
- m_freeChunksMap.erase(toErase);
- FreeMapType::iterator newBlock = m_freeChunksMap.insert(AZStd::make_pair(newBlockSize, newBlockAddress)).first;
- if (curBlock != m_freeChunksMap.end() && newBlockSize < curBlock->first) // if the newBlock in before the next in the list, update next in the list to current
+ blockSize = iter->first;
+ blockAddress = iter->second;
+ char* alignedAddr = PointerAlignUp(blockAddress, alignment);
+ preAllocBlockSize = alignedAddr - blockAddress;
+ if (preAllocBlockSize + byteSize <= blockSize)
{
- curBlock = newBlock;
+ m_freeChunksMap.erase(iter); // we have our allocation
+ m_used += byteSize;
+ address = alignedAddr;
+ m_allocChunksMap.insert(AZStd::make_pair(address, byteSize));
+ break;
}
- isMerge = true;
- break;
+ ++iter;
}
- else if (curEnd == nextStart)
+ if (address != nullptr)
{
- // merge
- size_t newBlockSize = curBlock->first + nextBlock->first;
- char* newBlockAddress = curStart;
- m_freeChunksMap.erase(nextBlock);
- FreeMapType::iterator toErase = curBlock;
- ++curBlock;
- m_freeChunksMap.erase(toErase);
- FreeMapType::iterator newBlock = m_freeChunksMap.insert(AZStd::make_pair(newBlockSize, newBlockAddress)).first;
- if (curBlock != m_freeChunksMap.end() && newBlockSize < curBlock->first) // if the newBlock in before the next in the list, update next in the list to current
+ // split blocks
+ if (preAllocBlockSize) // if we have a block before the alignment
{
- curBlock = newBlock;
+ m_freeChunksMap.insert(AZStd::make_pair(preAllocBlockSize, blockAddress));
}
- isMerge = true;
+ size_t postAllocBlockSize = blockSize - preAllocBlockSize - byteSize;
+ if (postAllocBlockSize)
+ {
+ m_freeChunksMap.insert(AZStd::make_pair(postAllocBlockSize, address + byteSize));
+ }
+
break;
}
- ++nextBlock;
+ else
+ {
+ GarbageCollect();
+ }
}
- if (!isMerge)
+ return address;
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapSchema::DeAllocate(pointer_type ptr)
+ {
+ if (ptr == nullptr)
{
- ++curBlock;
+ return;
+ }
+ AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
+ if (iter != m_allocChunksMap.end())
+ {
+ m_used -= iter->second;
+ m_freeChunksMap.insert(AZStd::make_pair(iter->second, iter->first));
+ m_allocChunksMap.erase(iter);
}
}
-}
+
+ //=========================================================================
+ // AllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::size_type BestFitExternalMapSchema::AllocationSize(pointer_type ptr)
+ {
+ AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
+ if (iter != m_allocChunksMap.end())
+ {
+ return iter->second;
+ }
+ return 0;
+ }
+
+ //=========================================================================
+ // GetMaxAllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::size_type BestFitExternalMapSchema::GetMaxAllocationSize() const
+ {
+ if (!m_freeChunksMap.empty())
+ {
+ return m_freeChunksMap.rbegin()->first;
+ }
+ return 0;
+ }
+
+ auto BestFitExternalMapSchema::GetMaxContiguousAllocationSize() const -> size_type
+ {
+ // Return the maximum size of any single allocation
+ return AZ_CORE_MAX_ALLOCATOR_SIZE;
+ }
+
+ //=========================================================================
+ // GarbageCollect
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapSchema::GarbageCollect()
+ {
+ for (FreeMapType::iterator curBlock = m_freeChunksMap.begin(); curBlock != m_freeChunksMap.end();)
+ {
+ char* curStart = curBlock->second;
+ char* curEnd = curStart + curBlock->first;
+ bool isMerge = false;
+ for (FreeMapType::iterator nextBlock = curBlock++; nextBlock != m_freeChunksMap.end();)
+ {
+ char* nextStart = nextBlock->second;
+ char* nextEnd = nextStart + nextBlock->first;
+ if (curStart == nextEnd)
+ {
+ // merge
+ size_t newBlockSize = curBlock->first + nextBlock->first;
+ char* newBlockAddress = nextStart;
+ m_freeChunksMap.erase(nextBlock);
+ FreeMapType::iterator toErase = curBlock;
+ ++curBlock;
+ m_freeChunksMap.erase(toErase);
+ FreeMapType::iterator newBlock = m_freeChunksMap.insert(AZStd::make_pair(newBlockSize, newBlockAddress)).first;
+ // if the newBlock in before the next in the list, update next in the list to current
+ if (curBlock != m_freeChunksMap.end() && newBlockSize < curBlock->first)
+ {
+ curBlock = newBlock;
+ }
+ isMerge = true;
+ break;
+ }
+ else if (curEnd == nextStart)
+ {
+ // merge
+ size_t newBlockSize = curBlock->first + nextBlock->first;
+ char* newBlockAddress = curStart;
+ m_freeChunksMap.erase(nextBlock);
+ FreeMapType::iterator toErase = curBlock;
+ ++curBlock;
+ m_freeChunksMap.erase(toErase);
+ FreeMapType::iterator newBlock = m_freeChunksMap.insert(AZStd::make_pair(newBlockSize, newBlockAddress)).first;
+ // if the newBlock in before the next in the list, update next in the list to current
+ if (curBlock != m_freeChunksMap.end() && newBlockSize < curBlock->first)
+ {
+ curBlock = newBlock;
+ }
+ isMerge = true;
+ break;
+ }
+ ++nextBlock;
+ }
+ if (!isMerge)
+ {
+ ++curBlock;
+ }
+ }
+ }
+
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h
index eaab614593..0055a86ee2 100644
--- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h
+++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h
@@ -5,8 +5,7 @@
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
-#ifndef AZ_BEST_FIT_EXT_MAP_ALLOCATION_SCHEME_H
-#define AZ_BEST_FIT_EXT_MAP_ALLOCATION_SCHEME_H
+#pragma once
#include
#include
@@ -77,8 +76,3 @@ namespace AZ
AllocMapType m_allocChunksMap;
};
}
-
-#endif // AZ_BEST_FIT_EXT_MAP_ALLOCATION_SCHEME_H
-#pragma once
-
-
diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp
index 9167864450..c57cfea222 100644
--- a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp
@@ -27,8 +27,8 @@ namespace AZ
//////////////////////////////////////////////////////////////////////////
// Pool Allocation algorithm
/**
- * Pool Allocation algorithm implementation. Used in both PoolAllocator and ThreadPoolAllocator.
- */
+ * Pool Allocation algorithm implementation. Used in both PoolAllocator and ThreadPoolAllocator.
+ */
template
class PoolAllocation
{
@@ -41,20 +41,20 @@ namespace AZ
PoolAllocation(Allocator* alloc, size_t pageSize, size_t minAllocationSize, size_t maxAllocationSize);
virtual ~PoolAllocation();
- void* Allocate(size_t byteSize, size_t alignment);
- void DeAllocate(void* ptr);
- size_t AllocationSize(void* ptr);
+ void* Allocate(size_t byteSize, size_t alignment);
+ void DeAllocate(void* ptr);
+ size_t AllocationSize(void* ptr);
// if isForceFreeAllPages is true we will free all pages even if they have allocations in them.
- void GarbageCollect(bool isForceFreeAllPages = false);
+ void GarbageCollect(bool isForceFreeAllPages = false);
- Allocator* m_allocator;
- size_t m_pageSize;
- size_t m_minAllocationShift;
- size_t m_minAllocationSize;
- size_t m_maxAllocationSize;
- size_t m_numBuckets;
- BucketType* m_buckets;
- size_t m_numBytesAllocated;
+ Allocator* m_allocator;
+ size_t m_pageSize;
+ size_t m_minAllocationShift;
+ size_t m_minAllocationSize;
+ size_t m_maxAllocationSize;
+ size_t m_numBuckets;
+ BucketType* m_buckets;
+ size_t m_numBytesAllocated;
};
/**
@@ -68,23 +68,22 @@ namespace AZ
PoolSchemaImpl(const PoolSchema::Descriptor& desc);
~PoolSchemaImpl();
- PoolSchema::pointer_type Allocate(PoolSchema::size_type byteSize, PoolSchema::size_type alignment, int flags = 0);
- void DeAllocate(PoolSchema::pointer_type ptr);
- PoolSchema::size_type AllocationSize(PoolSchema::pointer_type ptr);
+ PoolSchema::pointer_type Allocate(PoolSchema::size_type byteSize, PoolSchema::size_type alignment, int flags = 0);
+ void DeAllocate(PoolSchema::pointer_type ptr);
+ PoolSchema::size_type AllocationSize(PoolSchema::pointer_type ptr);
/**
- * We allocate memory for pools in pages. Page is a information struct
- * located at the end of the allocated page. When it's in the at the end
- * we can usually hide it's size in the free bytes left from the pagesize/poolsize.
- * \note IMPORTANT pages are aligned on the page size, this way can find quickly which
- * pool the pointer belongs to.
- */
- struct Page
- : public AZStd::intrusive_list_node
+ * We allocate memory for pools in pages. Page is a information struct
+ * located at the end of the allocated page. When it's in the at the end
+ * we can usually hide it's size in the free bytes left from the pagesize/poolsize.
+ * \note IMPORTANT pages are aligned on the page size, this way can find quickly which
+ * pool the pointer belongs to.
+ */
+ struct Page : public AZStd::intrusive_list_node
{
- struct FakeNode
- : public AZStd::intrusive_slist_node
- {};
+ struct FakeNode : public AZStd::intrusive_slist_node
+ {
+ };
void SetupFreeList(size_t elementSize, size_t pageDataBlockSize);
@@ -99,22 +98,22 @@ namespace AZ
};
/**
- * A bucket has a list of pages used with the specific pool size.
- */
+ * A bucket has a list of pages used with the specific pool size.
+ */
struct Bucket
{
using PageListType = AZStd::intrusive_list>;
- PageListType m_pages;
+ PageListType m_pages;
};
// Functions used by PoolAllocation template
AZ_INLINE Page* PopFreePage();
- AZ_INLINE void PushFreePage(Page* page);
- void GarbageCollect();
- inline bool IsInStaticBlock(Page* page)
+ AZ_INLINE void PushFreePage(Page* page);
+ void GarbageCollect();
+ inline bool IsInStaticBlock(Page* page)
{
const char* staticBlockStart = reinterpret_cast(m_staticDataBlock);
- const char* staticBlockEnd = staticBlockStart + m_numStaticPages*m_pageSize;
+ const char* staticBlockEnd = staticBlockStart + m_numStaticPages * m_pageSize;
const char* pageAddress = reinterpret_cast(page);
// all pages are the same size so we either in or out, no need to check the pageAddressEnd
if (pageAddress >= staticBlockStart && pageAddress < staticBlockEnd)
@@ -126,21 +125,22 @@ namespace AZ
return false;
}
}
- inline Page* ConstructPage(size_t elementSize)
+ inline Page* ConstructPage(size_t elementSize)
{
AZ_Assert(m_isDynamic, "We run out of static pages (%d) and this is a static allocator!", m_numStaticPages);
// We store the page struct at the end of the block
char* memBlock;
- memBlock = reinterpret_cast(m_pageAllocator->Allocate(m_pageSize, m_pageSize, 0, "AZSystem::PoolSchemaImpl::ConstructPage", __FILE__, __LINE__));
+ memBlock = reinterpret_cast(
+ m_pageAllocator->Allocate(m_pageSize, m_pageSize, 0, "AZSystem::PoolSchemaImpl::ConstructPage", __FILE__, __LINE__));
size_t pageDataSize = m_pageSize - sizeof(Page);
- Page* page = new(memBlock+pageDataSize)Page();
+ Page* page = new (memBlock + pageDataSize) Page();
page->SetupFreeList(elementSize, pageDataSize);
page->m_elementSize = static_cast(elementSize);
page->m_maxNumElements = static_cast(pageDataSize / elementSize);
return page;
}
- inline void FreePage(Page* page)
+ inline void FreePage(Page* page)
{
// TODO: It's optional if we want to check the guard value for corruption, since we are not going
// to use this memory. Yet it might be useful to catch bugs.
@@ -150,9 +150,9 @@ namespace AZ
m_pageAllocator->DeAllocate(memBlock);
}
- inline Page* PageFromAddress(void* address)
+ inline Page* PageFromAddress(void* address)
{
- char* memBlock = reinterpret_cast(reinterpret_cast(address) & ~(m_pageSize-1));
+ char* memBlock = reinterpret_cast(reinterpret_cast(address) & ~(m_pageSize - 1));
memBlock += m_pageSize - sizeof(Page);
Page* page = reinterpret_cast(memBlock);
if (!page->m_magic.Validate())
@@ -163,18 +163,18 @@ namespace AZ
}
using AllocatorType = PoolAllocation;
- IAllocatorAllocate* m_pageAllocator;
- AllocatorType m_allocator;
- void* m_staticDataBlock;
- unsigned int m_numStaticPages;
- bool m_isDynamic;
- size_t m_pageSize;
- Bucket::PageListType m_freePages;
+ IAllocatorAllocate* m_pageAllocator;
+ AllocatorType m_allocator;
+ void* m_staticDataBlock;
+ unsigned int m_numStaticPages;
+ bool m_isDynamic;
+ size_t m_pageSize;
+ Bucket::PageListType m_freePages;
};
/**
- * Thread safe pool allocator.
- */
+ * Thread safe pool allocator.
+ */
class ThreadPoolSchemaImpl
{
public:
@@ -183,18 +183,20 @@ namespace AZ
/**
* Specialized \ref PoolAllocator::Page page for lock free allocator.
*/
- struct Page
- : public AZStd::intrusive_list_node
+ struct Page : public AZStd::intrusive_list_node
{
Page(ThreadPoolData* threadData)
- : m_threadData(threadData) {}
+ : m_threadData(threadData)
+ {
+ }
- struct FakeNode
- : public AZStd::intrusive_slist_node
- {};
+ struct FakeNode : public AZStd::intrusive_slist_node
+ {
+ };
// Fake Lock Free node used when we delete an element from another thread.
- struct FakeNodeLF
- : public AZStd::lock_free_intrusive_stack_node{};
+ struct FakeNodeLF : public AZStd::lock_free_intrusive_stack_node
+ {
+ };
void SetupFreeList(size_t elementSize, size_t pageDataBlockSize);
@@ -202,8 +204,8 @@ namespace AZ
using FreeListType = AZStd::intrusive_slist>;
FreeListType m_freeList;
- AZStd::lock_free_intrusive_stack_node m_lfStack; ///< Lock Free stack node
- struct ThreadPoolData* m_threadData; ///< The thread data that own's the page.
+ AZStd::lock_free_intrusive_stack_node m_lfStack; ///< Lock Free stack node
+ struct ThreadPoolData* m_threadData; ///< The thread data that own's the page.
u32 m_bin;
Debug::Magic32 m_magic;
u32 m_elementSize;
@@ -211,31 +213,34 @@ namespace AZ
};
/**
- * A bucket has a list of pages used with the specific pool size.
- */
+ * A bucket has a list of pages used with the specific pool size.
+ */
struct Bucket
{
using PageListType = AZStd::intrusive_list>;
- PageListType m_pages;
+ PageListType m_pages;
};
- ThreadPoolSchemaImpl(const ThreadPoolSchema::Descriptor& desc, ThreadPoolSchema::GetThreadPoolData threadPoolGetter, ThreadPoolSchema::SetThreadPoolData threadPoolSetter);
+ ThreadPoolSchemaImpl(
+ const ThreadPoolSchema::Descriptor& desc,
+ ThreadPoolSchema::GetThreadPoolData threadPoolGetter,
+ ThreadPoolSchema::SetThreadPoolData threadPoolSetter);
~ThreadPoolSchemaImpl();
- ThreadPoolSchema::pointer_type Allocate(ThreadPoolSchema::size_type byteSize, ThreadPoolSchema::size_type alignment, int flags = 0);
- void DeAllocate(ThreadPoolSchema::pointer_type ptr);
- ThreadPoolSchema::size_type AllocationSize(ThreadPoolSchema::pointer_type ptr);
+ ThreadPoolSchema::pointer_type Allocate(ThreadPoolSchema::size_type byteSize, ThreadPoolSchema::size_type alignment, int flags = 0);
+ void DeAllocate(ThreadPoolSchema::pointer_type ptr);
+ ThreadPoolSchema::size_type AllocationSize(ThreadPoolSchema::pointer_type ptr);
/// Return unused memory to the OS. Don't call this too often because you will force unnecessary allocations.
- void GarbageCollect();
+ void GarbageCollect();
//////////////////////////////////////////////////////////////////////////
// Functions used by PoolAllocation template
AZ_INLINE Page* PopFreePage();
- AZ_INLINE void PushFreePage(Page* page);
- inline bool IsInStaticBlock(Page* page)
+ AZ_INLINE void PushFreePage(Page* page);
+ inline bool IsInStaticBlock(Page* page)
{
const char* staticBlockStart = reinterpret_cast(m_staticDataBlock);
- const char* staticBlockEnd = staticBlockStart + m_numStaticPages*m_pageSize;
+ const char* staticBlockEnd = staticBlockStart + m_numStaticPages * m_pageSize;
const char* pageAddress = reinterpret_cast(page);
// all pages are the same size so we either in or out, no need to check the pageAddressEnd
if (pageAddress > staticBlockStart && pageAddress < staticBlockEnd)
@@ -247,33 +252,34 @@ namespace AZ
return false;
}
}
- inline Page* ConstructPage(size_t elementSize)
+ inline Page* ConstructPage(size_t elementSize)
{
AZ_Assert(m_isDynamic, "We run out of static pages (%d) and this is a static allocator!", m_numStaticPages);
// We store the page struct at the end of the block
char* memBlock;
- memBlock = reinterpret_cast(m_pageAllocator->Allocate(m_pageSize, m_pageSize, 0, "AZSystem::ThreadPoolSchema::ConstructPage", __FILE__, __LINE__));
+ memBlock = reinterpret_cast(
+ m_pageAllocator->Allocate(m_pageSize, m_pageSize, 0, "AZSystem::ThreadPoolSchema::ConstructPage", __FILE__, __LINE__));
size_t pageDataSize = m_pageSize - sizeof(Page);
- Page* page = new(memBlock+pageDataSize)Page(m_threadPoolGetter());
+ Page* page = new (memBlock + pageDataSize) Page(m_threadPoolGetter());
page->SetupFreeList(elementSize, pageDataSize);
page->m_elementSize = static_cast(elementSize);
page->m_maxNumElements = static_cast(pageDataSize / elementSize);
return page;
}
- inline void FreePage(Page* page)
+ inline void FreePage(Page* page)
{
// TODO: It's optional if we want to check the guard value for corruption, since we are not going
// to use this memory. Yet it might be useful to catch bugs.
// We store the page struct at the end of the block
char* memBlock = reinterpret_cast(page) - m_pageSize + sizeof(Page);
- page->~Page(); // destroy the page
+ page->~Page(); // destroy the page
m_pageAllocator->DeAllocate(memBlock);
}
- inline Page* PageFromAddress(void* address)
+ inline Page* PageFromAddress(void* address)
{
- char* memBlock = reinterpret_cast(reinterpret_cast(address) & ~static_cast(m_pageSize-1));
+ char* memBlock = reinterpret_cast(reinterpret_cast(address) & ~static_cast(m_pageSize - 1));
memBlock += m_pageSize - sizeof(Page);
Page* page = reinterpret_cast(memBlock);
if (!page->m_magic.Validate())
@@ -292,18 +298,18 @@ namespace AZ
// Fox X64 we push/pop pages using the m_mutex to sync. Pages are
using FreePagesType = Bucket::PageListType;
- FreePagesType m_freePages;
- AZStd::vector m_threads; ///< Array with all separate thread data. Used to traverse end free elements.
+ FreePagesType m_freePages;
+ AZStd::vector m_threads; ///< Array with all separate thread data. Used to traverse end free elements.
- IAllocatorAllocate* m_pageAllocator;
- void* m_staticDataBlock;
- size_t m_numStaticPages;
- size_t m_pageSize;
- size_t m_minAllocationSize;
- size_t m_maxAllocationSize;
- bool m_isDynamic;
+ IAllocatorAllocate* m_pageAllocator;
+ void* m_staticDataBlock;
+ size_t m_numStaticPages;
+ size_t m_pageSize;
+ size_t m_minAllocationSize;
+ size_t m_maxAllocationSize;
+ bool m_isDynamic;
// TODO rbbaklov Changed to recursive_mutex from mutex for Linux support.
- AZStd::recursive_mutex m_mutex;
+ AZStd::recursive_mutex m_mutex;
};
struct ThreadPoolData
@@ -315,1090 +321,1088 @@ namespace AZ
using AllocatorType = PoolAllocation;
/**
- * Stack with freed elements from other threads. We don't need stamped stack since the ABA problem can not
- * happen here. We push from many threads and pop from only one (we don't push from it).
- */
- using FreedElementsStack = AZStd::lock_free_intrusive_stack>;
+ * Stack with freed elements from other threads. We don't need stamped stack since the ABA problem can not
+ * happen here. We push from many threads and pop from only one (we don't push from it).
+ */
+ using FreedElementsStack = AZStd::lock_free_intrusive_stack<
+ ThreadPoolSchemaImpl::Page::FakeNodeLF,
+ AZStd::lock_free_intrusive_stack_base_hook>;
- AllocatorType m_allocator;
- FreedElementsStack m_freedElements;
+ AllocatorType m_allocator;
+ FreedElementsStack m_freedElements;
};
-}
+} // namespace AZ
-using namespace AZ;
-
-//=========================================================================
-// PoolAllocation
-// [9/09/2009]
-//=========================================================================
-template
-PoolAllocation::PoolAllocation(Allocator* alloc, size_t pageSize, size_t minAllocationSize, size_t maxAllocationSize)
- : m_allocator(alloc)
- , m_pageSize(pageSize)
- , m_numBytesAllocated(0)
+namespace AZ
{
- AZ_Assert(alloc->m_pageAllocator, "We need the page allocator setup!");
- AZ_Assert(pageSize >= maxAllocationSize * 4, "We need to fit at least 4 objects in a pool! Increase your page size! Page %d MaxAllocationSize %d",pageSize,maxAllocationSize);
- AZ_Assert(minAllocationSize == maxAllocationSize || ((minAllocationSize)&(minAllocationSize - 1)) == 0, "Min allocation should be either equal to max allocation size or power of two");
-
- m_minAllocationSize = AZ::GetMax(minAllocationSize, size_t(8));
- m_maxAllocationSize = AZ::GetMax(maxAllocationSize, minAllocationSize);
-
- m_minAllocationShift = 0;
- for (size_t i = 1; i < sizeof(unsigned int)*8; i++)
+ //=========================================================================
+ // PoolAllocation
+ // [9/09/2009]
+ //=========================================================================
+ template
+ PoolAllocation::PoolAllocation(Allocator* alloc, size_t pageSize, size_t minAllocationSize, size_t maxAllocationSize)
+ : m_allocator(alloc)
+ , m_pageSize(pageSize)
+ , m_numBytesAllocated(0)
{
- if (m_minAllocationSize >> i == 0)
+ AZ_Assert(alloc->m_pageAllocator, "We need the page allocator setup!");
+ AZ_Assert(
+ pageSize >= maxAllocationSize * 4,
+ "We need to fit at least 4 objects in a pool! Increase your page size! Page %d MaxAllocationSize %d", pageSize,
+ maxAllocationSize);
+ AZ_Assert(
+ minAllocationSize == maxAllocationSize || ((minAllocationSize) & (minAllocationSize - 1)) == 0,
+ "Min allocation should be either equal to max allocation size or power of two");
+
+ m_minAllocationSize = AZ::GetMax(minAllocationSize, size_t(8));
+ m_maxAllocationSize = AZ::GetMax(maxAllocationSize, minAllocationSize);
+
+ m_minAllocationShift = 0;
+ for (size_t i = 1; i < sizeof(unsigned int) * 8; i++)
{
- m_minAllocationShift = i-1;
- break;
- }
- }
-
- AZ_Assert(m_maxAllocationSize % m_minAllocationSize == 0, "You need to be able to divide m_maxAllocationSize (%d) / m_minAllocationSize (%d) without fraction!", m_maxAllocationSize, m_minAllocationSize);
- m_numBuckets = m_maxAllocationSize / m_minAllocationSize;
- AZ_Assert(m_numBuckets <= 0xffff, "You can't have more than 65535 number of buckets! We need to increase the index size!");
- m_buckets = reinterpret_cast(alloc->m_pageAllocator->Allocate(sizeof(BucketType)*m_numBuckets, AZStd::alignment_of::value));
- for (size_t i = 0; i < m_numBuckets; ++i)
- {
- new(m_buckets + i)BucketType();
- }
-}
-
-//=========================================================================
-// ~PoolAllocation
-// [9/09/2009]
-//=========================================================================
-template
-PoolAllocation::~PoolAllocation()
-{
- GarbageCollect(true);
-
- for (size_t i = 0; i < m_numBuckets; ++i)
- {
- m_buckets[i].~BucketType();
- }
- m_allocator->m_pageAllocator->DeAllocate(m_buckets, sizeof(BucketType) * m_numBuckets);
-}
-
-//=========================================================================
-// Allocate
-// [9/09/2009]
-//=========================================================================
-template
-AZ_INLINE void*
-PoolAllocation::Allocate(size_t byteSize, size_t alignment)
-{
- AZ_Assert(byteSize>0, "You can not allocate 0 bytes!");
- AZ_Assert(alignment>0&&(alignment&(alignment-1))==0, "Alignment must be >0 and power of 2!");
-
- // pad the size to the min allocation size.
- byteSize = AZ::SizeAlignUp(byteSize, m_minAllocationSize);
- byteSize = AZ::SizeAlignUp(byteSize, alignment);
-
- if (byteSize > m_maxAllocationSize)
- {
- AZ_Assert(false, "Allocation size (%d) is too big (max: %d) for pools!", byteSize, m_maxAllocationSize);
- return nullptr;
- }
-
- u32 bucketIndex = static_cast((byteSize >> m_minAllocationShift)-1);
- BucketType& bucket = m_buckets[bucketIndex];
- PageType* page = nullptr;
- if (!bucket.m_pages.empty())
- {
- page = &bucket.m_pages.front();
-
- // check if we have free slot in the page
- if (page->m_freeList.empty())
- {
- page = nullptr;
- }
- else if (page->m_freeList.size()==1)
- {
- // if we have only 1 free slot this allocation will
- // fill the page, so put in on the back
- bucket.m_pages.pop_front();
- bucket.m_pages.push_back(*page);
- }
- }
- if (!page)
- {
- page = m_allocator->PopFreePage();
- if (page)
- {
- // We have any pages available on free page stack.
- if (page->m_bin != bucketIndex) // if this page was used the same bucket we are ready to roll.
+ if (m_minAllocationSize >> i == 0)
{
- size_t elementSize = byteSize;
- size_t pageDataSize = m_pageSize - sizeof(PageType);
- page->SetupFreeList(elementSize, pageDataSize);
- page->m_bin = bucketIndex;
- page->m_elementSize = static_cast(elementSize);
- page->m_maxNumElements = static_cast(pageDataSize / elementSize);
+ m_minAllocationShift = i - 1;
+ break;
}
}
- else
+
+ AZ_Assert(
+ m_maxAllocationSize % m_minAllocationSize == 0,
+ "You need to be able to divide m_maxAllocationSize (%d) / m_minAllocationSize (%d) without fraction!", m_maxAllocationSize,
+ m_minAllocationSize);
+ m_numBuckets = m_maxAllocationSize / m_minAllocationSize;
+ AZ_Assert(m_numBuckets <= 0xffff, "You can't have more than 65535 number of buckets! We need to increase the index size!");
+ m_buckets = reinterpret_cast(
+ alloc->m_pageAllocator->Allocate(sizeof(BucketType) * m_numBuckets, AZStd::alignment_of::value));
+ for (size_t i = 0; i < m_numBuckets; ++i)
{
- // We need to align each page on it's size, this way we can quickly find which page the pointer belongs to.
- page = m_allocator->ConstructPage(byteSize);
- page->m_bin = bucketIndex;
+ new (m_buckets + i) BucketType();
}
- bucket.m_pages.push_front(*page);
}
- // The data address and the fake node address are shared.
- void* address = &page->m_freeList.front();
- page->m_freeList.pop_front();
-
- m_numBytesAllocated += byteSize;
-
- return address;
-}
-
-//=========================================================================
-// DeAllocate
-// [9/09/2009]
-//=========================================================================
-template
-AZ_INLINE void
-PoolAllocation::DeAllocate(void* ptr)
-{
- PageType* page = m_allocator->PageFromAddress(ptr);
- if (page==nullptr)
+ //=========================================================================
+ // ~PoolAllocation
+ // [9/09/2009]
+ //=========================================================================
+ template
+ PoolAllocation::~PoolAllocation()
{
- AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
- return;
- }
+ GarbageCollect(true);
- // (pageSize - info struct at the end) / (element size)
- size_t maxElementsPerBucket = page->m_maxNumElements;
-
- size_t numFreeNodes = page->m_freeList.size();
- typename PageType::FakeNode* node = new(ptr) typename PageType::FakeNode();
- page->m_freeList.push_front(*node);
-
- if (numFreeNodes==0)
- {
- // if the page was full before sort at the front
- BucketType& bucket = m_buckets[page->m_bin];
- bucket.m_pages.erase(*page);
- bucket.m_pages.push_front(*page);
- }
- else if (numFreeNodes == maxElementsPerBucket-1)
- {
- // push to the list of free pages
- BucketType& bucket = m_buckets[page->m_bin];
- PageType* frontPage = &bucket.m_pages.front();
- if (frontPage != page)
+ for (size_t i = 0; i < m_numBuckets; ++i)
{
- bucket.m_pages.erase(*page);
- // check if the front page is full if so push the free page to the front otherwise push
- // push it on the free pages list so it can be reused by other bins.
- if (frontPage->m_freeList.empty())
+ m_buckets[i].~BucketType();
+ }
+ m_allocator->m_pageAllocator->DeAllocate(m_buckets, sizeof(BucketType) * m_numBuckets);
+ }
+
+ //=========================================================================
+ // Allocate
+ // [9/09/2009]
+ //=========================================================================
+ template
+ AZ_INLINE void* PoolAllocation::Allocate(size_t byteSize, size_t alignment)
+ {
+ AZ_Assert(byteSize > 0, "You can not allocate 0 bytes!");
+ AZ_Assert(alignment > 0 && (alignment & (alignment - 1)) == 0, "Alignment must be >0 and power of 2!");
+
+ // pad the size to the min allocation size.
+ byteSize = AZ::SizeAlignUp(byteSize, m_minAllocationSize);
+ byteSize = AZ::SizeAlignUp(byteSize, alignment);
+
+ if (byteSize > m_maxAllocationSize)
+ {
+ AZ_Assert(false, "Allocation size (%d) is too big (max: %d) for pools!", byteSize, m_maxAllocationSize);
+ return nullptr;
+ }
+
+ u32 bucketIndex = static_cast((byteSize >> m_minAllocationShift) - 1);
+ BucketType& bucket = m_buckets[bucketIndex];
+ PageType* page = nullptr;
+ if (!bucket.m_pages.empty())
+ {
+ page = &bucket.m_pages.front();
+
+ // check if we have free slot in the page
+ if (page->m_freeList.empty())
{
- bucket.m_pages.push_front(*page);
+ page = nullptr;
+ }
+ else if (page->m_freeList.size() == 1)
+ {
+ // if we have only 1 free slot this allocation will
+ // fill the page, so put in on the back
+ bucket.m_pages.pop_front();
+ bucket.m_pages.push_back(*page);
+ }
+ }
+ if (!page)
+ {
+ page = m_allocator->PopFreePage();
+ if (page)
+ {
+ // We have any pages available on free page stack.
+ if (page->m_bin != bucketIndex) // if this page was used the same bucket we are ready to roll.
+ {
+ size_t elementSize = byteSize;
+ size_t pageDataSize = m_pageSize - sizeof(PageType);
+ page->SetupFreeList(elementSize, pageDataSize);
+ page->m_bin = bucketIndex;
+ page->m_elementSize = static_cast(elementSize);
+ page->m_maxNumElements = static_cast(pageDataSize / elementSize);
+ }
}
else
{
- m_allocator->PushFreePage(page);
+ // We need to align each page on it's size, this way we can quickly find which page the pointer belongs to.
+ page = m_allocator->ConstructPage(byteSize);
+ page->m_bin = bucketIndex;
}
+ bucket.m_pages.push_front(*page);
}
- else if (frontPage->m_next != nullptr)
+
+ // The data address and the fake node address are shared.
+ void* address = &page->m_freeList.front();
+ page->m_freeList.pop_front();
+
+ m_numBytesAllocated += byteSize;
+
+ return address;
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/09/2009]
+ //=========================================================================
+ template
+ AZ_INLINE void PoolAllocation::DeAllocate(void* ptr)
+ {
+ PageType* page = m_allocator->PageFromAddress(ptr);
+ if (page == nullptr)
{
- // if the next page has free slots free the current page
- if (frontPage->m_next->m_freeList.size() < maxElementsPerBucket)
+ AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
+ return;
+ }
+
+ // (pageSize - info struct at the end) / (element size)
+ size_t maxElementsPerBucket = page->m_maxNumElements;
+
+ size_t numFreeNodes = page->m_freeList.size();
+ typename PageType::FakeNode* node = new (ptr) typename PageType::FakeNode();
+ page->m_freeList.push_front(*node);
+
+ if (numFreeNodes == 0)
+ {
+ // if the page was full before sort at the front
+ BucketType& bucket = m_buckets[page->m_bin];
+ bucket.m_pages.erase(*page);
+ bucket.m_pages.push_front(*page);
+ }
+ else if (numFreeNodes == maxElementsPerBucket - 1)
+ {
+ // push to the list of free pages
+ BucketType& bucket = m_buckets[page->m_bin];
+ PageType* frontPage = &bucket.m_pages.front();
+ if (frontPage != page)
{
bucket.m_pages.erase(*page);
- m_allocator->PushFreePage(page);
- }
- }
- }
-
- m_numBytesAllocated -= page->m_elementSize;
-}
-
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-template
-AZ_INLINE size_t
-PoolAllocation::AllocationSize(void* ptr)
-{
- PageType* page = m_allocator->PageFromAddress(ptr);
- size_t elementSize;
- if (page)
- {
- elementSize = page->m_elementSize;
- }
- else
- {
- elementSize = 0;
- }
-
- return elementSize;
-}
-
-//=========================================================================
-// GarbageCollect
-// [3/1/2012]
-//=========================================================================
-template
-AZ_INLINE void
-PoolAllocation::GarbageCollect(bool isForceFreeAllPages)
-{
- // Free empty pages in the buckets (or better be empty)
- for (unsigned int i = 0; i < (unsigned int)m_numBuckets; ++i)
- {
- // (pageSize - info struct at the end) / (element size)
- size_t maxElementsPerBucket = (m_pageSize - sizeof(PageType)) / ((i+1) << m_minAllocationShift);
-
- typename BucketType::PageListType& pages = m_buckets[i].m_pages;
- while (!pages.empty())
- {
- PageType& page = pages.front();
- pages.pop_front();
- if (page.m_freeList.size()==maxElementsPerBucket || isForceFreeAllPages)
- {
- if (!m_allocator->IsInStaticBlock(&page))
+ // check if the front page is full if so push the free page to the front otherwise push
+ // push it on the free pages list so it can be reused by other bins.
+ if (frontPage->m_freeList.empty())
{
- m_allocator->FreePage(&page);
+ bucket.m_pages.push_front(*page);
}
else
{
- m_allocator->PushFreePage(&page);
+ m_allocator->PushFreePage(page);
+ }
+ }
+ else if (frontPage->m_next != nullptr)
+ {
+ // if the next page has free slots free the current page
+ if (frontPage->m_next->m_freeList.size() < maxElementsPerBucket)
+ {
+ bucket.m_pages.erase(*page);
+ m_allocator->PushFreePage(page);
+ }
+ }
+ }
+
+ m_numBytesAllocated -= page->m_elementSize;
+ }
+
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ template
+ AZ_INLINE size_t PoolAllocation::AllocationSize(void* ptr)
+ {
+ PageType* page = m_allocator->PageFromAddress(ptr);
+ size_t elementSize;
+ if (page)
+ {
+ elementSize = page->m_elementSize;
+ }
+ else
+ {
+ elementSize = 0;
+ }
+
+ return elementSize;
+ }
+
+ //=========================================================================
+ // GarbageCollect
+ // [3/1/2012]
+ //=========================================================================
+ template
+ AZ_INLINE void PoolAllocation::GarbageCollect(bool isForceFreeAllPages)
+ {
+ // Free empty pages in the buckets (or better be empty)
+ for (unsigned int i = 0; i < (unsigned int)m_numBuckets; ++i)
+ {
+ // (pageSize - info struct at the end) / (element size)
+ size_t maxElementsPerBucket = (m_pageSize - sizeof(PageType)) / ((i + 1) << m_minAllocationShift);
+
+ typename BucketType::PageListType& pages = m_buckets[i].m_pages;
+ while (!pages.empty())
+ {
+ PageType& page = pages.front();
+ pages.pop_front();
+ if (page.m_freeList.size() == maxElementsPerBucket || isForceFreeAllPages)
+ {
+ if (!m_allocator->IsInStaticBlock(&page))
+ {
+ m_allocator->FreePage(&page);
+ }
+ else
+ {
+ m_allocator->PushFreePage(&page);
+ }
}
}
}
}
-}
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-// PollAllocator
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ // PollAllocator
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
-//=========================================================================
-// PoolSchema
-// [9/15/2009]
-//=========================================================================
-PoolSchema::PoolSchema(const Descriptor& desc)
- : m_impl(nullptr)
-{
- (void)desc; // ignored here, applied in Create()
-}
-
-//=========================================================================
-// ~PoolSchema
-// [9/15/2009]
-//=========================================================================
-PoolSchema::~PoolSchema()
-{
- AZ_Assert(m_impl==nullptr, "You did not destroy the pool schema!");
- delete m_impl;
-}
-
-//=========================================================================
-// Create
-// [9/15/2009]
-//=========================================================================
-bool PoolSchema::Create(const Descriptor& desc)
-{
- AZ_Assert(m_impl==nullptr, "PoolSchema already created!");
- if (m_impl == nullptr)
+ //=========================================================================
+ // PoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchema::PoolSchema(const Descriptor& desc)
+ : m_impl(nullptr)
{
- m_impl = aznew PoolSchemaImpl(desc);
+ (void)desc; // ignored here, applied in Create()
}
- return (m_impl!=nullptr);
-}
-//=========================================================================
-// ~Destroy
-// [9/15/2009]
-//=========================================================================
-bool PoolSchema::Destroy()
-{
- delete m_impl;
- m_impl = nullptr;
- return true;
-}
-
-//=========================================================================
-// Allocate
-// [9/15/2009]
-//=========================================================================
-PoolSchema::pointer_type
-PoolSchema::Allocate(size_type byteSize, size_type alignment, int flags, const char* name, const char* fileName, int lineNum, unsigned int suppressStackRecord)
-{
- (void)flags;
- (void)name;
- (void)fileName;
- (void)lineNum;
- (void)suppressStackRecord;
- return m_impl->Allocate(byteSize, alignment);
-}
-
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-PoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
-{
- (void)byteSize;
- (void)alignment;
- m_impl->DeAllocate(ptr);
-}
-
-//=========================================================================
-// Resize
-// [10/14/2018]
-//=========================================================================
-PoolSchema::size_type
-PoolSchema::Resize(pointer_type ptr, size_type newSize)
-{
- (void)ptr;
- (void)newSize;
- return 0; // unsupported
-}
-
-//=========================================================================
-// ReAllocate
-// [10/14/2018]
-//=========================================================================
-PoolSchema::pointer_type
-PoolSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
-{
- (void)ptr;
- (void)newSize;
- (void)newAlignment;
- AZ_Assert(false, "unsupported");
-
- return ptr;
-}
-
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-PoolSchema::size_type
-PoolSchema::AllocationSize(pointer_type ptr)
-{
- return m_impl->AllocationSize(ptr);
-}
-
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-PoolSchema::GarbageCollect()
-{
- // External requests for garbage collection may come from any thread, and the
- // garbage collection operation isn't threadsafe, which can lead to crashes.
- //
- // Due to the low memory consumption of this allocator in practice on Dragonfly
- // (~3kb) it makes sense to not bother with garbage collection and leave it to
- // occur exclusively in the destruction of the allocator.
- //
- // TODO: A better solution needs to be found for integrating back into mainline
- // Open 3D Engine.
- //m_impl->GarbageCollect();
-}
-
-auto PoolSchema::GetMaxContiguousAllocationSize() const -> size_type
-{
- return m_impl->m_allocator.m_maxAllocationSize;
-}
-
-//=========================================================================
-// NumAllocatedBytes
-// [11/1/2010]
-//=========================================================================
-PoolSchema::size_type
-PoolSchema::NumAllocatedBytes() const
-{
- return m_impl->m_allocator.m_numBytesAllocated;
-}
-
-//=========================================================================
-// Capacity
-// [11/1/2010]
-//=========================================================================
-PoolSchema::size_type
-PoolSchema::Capacity() const
-{
- return m_impl->m_numStaticPages * m_impl->m_pageSize;
-}
-
-//=========================================================================
-// GetPageAllocator
-// [11/17/2010]
-//=========================================================================
-IAllocatorAllocate*
-PoolSchema::GetSubAllocator()
-{
- return m_impl->m_pageAllocator;
-}
-
-
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-// PollAllocator Implementation
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-
-//=========================================================================
-// PoolSchemaImpl
-// [9/15/2009]
-//=========================================================================
-PoolSchemaImpl::PoolSchemaImpl(const PoolSchema::Descriptor& desc)
- : m_pageAllocator(desc.m_pageAllocator ? desc.m_pageAllocator : &AllocatorInstance::Get())
- , m_allocator(this, desc.m_pageSize, desc.m_minAllocationSize, desc.m_maxAllocationSize)
- , m_staticDataBlock(nullptr)
- , m_numStaticPages(desc.m_numStaticPages)
- , m_isDynamic(desc.m_isDynamic)
- , m_pageSize(desc.m_pageSize)
-{
- if (m_numStaticPages)
+ //=========================================================================
+ // ~PoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchema::~PoolSchema()
{
- // We store the page struct at the end of the block
- char* memBlock = reinterpret_cast(m_pageAllocator->Allocate(m_pageSize*m_numStaticPages, m_pageSize, 0, "AZSystem::PoolAllocation::Page static array", __FILE__, __LINE__));
- m_staticDataBlock = memBlock;
- size_t pageDataSize = m_pageSize - sizeof(Page);
- for (unsigned int i = 0; i < m_numStaticPages; ++i)
+ AZ_Assert(m_impl == nullptr, "You did not destroy the pool schema!");
+ delete m_impl;
+ }
+
+ //=========================================================================
+ // Create
+ // [9/15/2009]
+ //=========================================================================
+ bool PoolSchema::Create(const Descriptor& desc)
+ {
+ AZ_Assert(m_impl == nullptr, "PoolSchema already created!");
+ if (m_impl == nullptr)
{
- Page* page = new(memBlock+pageDataSize)Page();
- page->m_bin = 0xffffffff;
- page->m_elementSize = 0;
- page->m_maxNumElements = 0;
- PushFreePage(page);
- memBlock += m_pageSize;
+ m_impl = aznew PoolSchemaImpl(desc);
+ }
+ return (m_impl != nullptr);
+ }
+
+ //=========================================================================
+ // ~Destroy
+ // [9/15/2009]
+ //=========================================================================
+ bool PoolSchema::Destroy()
+ {
+ delete m_impl;
+ m_impl = nullptr;
+ return true;
+ }
+
+ //=========================================================================
+ // Allocate
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchema::pointer_type PoolSchema::Allocate(
+ size_type byteSize,
+ size_type alignment,
+ int flags,
+ const char* name,
+ const char* fileName,
+ int lineNum,
+ unsigned int suppressStackRecord)
+ {
+ (void)flags;
+ (void)name;
+ (void)fileName;
+ (void)lineNum;
+ (void)suppressStackRecord;
+ return m_impl->Allocate(byteSize, alignment);
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ (void)byteSize;
+ (void)alignment;
+ m_impl->DeAllocate(ptr);
+ }
+
+ //=========================================================================
+ // Resize
+ // [10/14/2018]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::Resize(pointer_type ptr, size_type newSize)
+ {
+ (void)ptr;
+ (void)newSize;
+ return 0; // unsupported
+ }
+
+ //=========================================================================
+ // ReAllocate
+ // [10/14/2018]
+ //=========================================================================
+ PoolSchema::pointer_type PoolSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
+ {
+ (void)ptr;
+ (void)newSize;
+ (void)newAlignment;
+ AZ_Assert(false, "unsupported");
+
+ return ptr;
+ }
+
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::AllocationSize(pointer_type ptr)
+ {
+ return m_impl->AllocationSize(ptr);
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchema::GarbageCollect()
+ {
+ // External requests for garbage collection may come from any thread, and the
+ // garbage collection operation isn't threadsafe, which can lead to crashes.
+ //
+ // Due to the low memory consumption of this allocator in practice on Dragonfly
+ // (~3kb) it makes sense to not bother with garbage collection and leave it to
+ // occur exclusively in the destruction of the allocator.
+ //
+ // TODO: A better solution needs to be found for integrating back into mainline
+ // Open 3D Engine.
+ // m_impl->GarbageCollect();
+ }
+
+ auto PoolSchema::GetMaxContiguousAllocationSize() const -> size_type
+ {
+ return m_impl->m_allocator.m_maxAllocationSize;
+ }
+
+ //=========================================================================
+ // NumAllocatedBytes
+ // [11/1/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::NumAllocatedBytes() const
+ {
+ return m_impl->m_allocator.m_numBytesAllocated;
+ }
+
+ //=========================================================================
+ // Capacity
+ // [11/1/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::Capacity() const
+ {
+ return m_impl->m_numStaticPages * m_impl->m_pageSize;
+ }
+
+ //=========================================================================
+ // GetPageAllocator
+ // [11/17/2010]
+ //=========================================================================
+ IAllocatorAllocate* PoolSchema::GetSubAllocator()
+ {
+ return m_impl->m_pageAllocator;
+ }
+
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ // PollAllocator Implementation
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+
+ //=========================================================================
+ // PoolSchemaImpl
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchemaImpl::PoolSchemaImpl(const PoolSchema::Descriptor& desc)
+ : m_pageAllocator(desc.m_pageAllocator ? desc.m_pageAllocator : &AllocatorInstance::Get())
+ , m_allocator(this, desc.m_pageSize, desc.m_minAllocationSize, desc.m_maxAllocationSize)
+ , m_staticDataBlock(nullptr)
+ , m_numStaticPages(desc.m_numStaticPages)
+ , m_isDynamic(desc.m_isDynamic)
+ , m_pageSize(desc.m_pageSize)
+ {
+ if (m_numStaticPages)
+ {
+ // We store the page struct at the end of the block
+ char* memBlock = reinterpret_cast(m_pageAllocator->Allocate(
+ m_pageSize * m_numStaticPages, m_pageSize, 0, "AZSystem::PoolAllocation::Page static array", __FILE__, __LINE__));
+ m_staticDataBlock = memBlock;
+ size_t pageDataSize = m_pageSize - sizeof(Page);
+ for (unsigned int i = 0; i < m_numStaticPages; ++i)
+ {
+ Page* page = new (memBlock + pageDataSize) Page();
+ page->m_bin = 0xffffffff;
+ page->m_elementSize = 0;
+ page->m_maxNumElements = 0;
+ PushFreePage(page);
+ memBlock += m_pageSize;
+ }
}
}
-}
-//=========================================================================
-// ~PoolSchemaImpl
-// [9/15/2009]
-//=========================================================================
-PoolSchemaImpl::~PoolSchemaImpl()
-{
- // Force free all pages
- m_allocator.GarbageCollect(true);
-
- // Free all unused memory
- GarbageCollect();
-
- if (m_staticDataBlock)
+ //=========================================================================
+ // ~PoolSchemaImpl
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchemaImpl::~PoolSchemaImpl()
{
- while (!m_freePages.empty())
+ // Force free all pages
+ m_allocator.GarbageCollect(true);
+
+ // Free all unused memory
+ GarbageCollect();
+
+ if (m_staticDataBlock)
{
- Page* page = &m_freePages.front();
- (void)page;
- m_freePages.pop_front();
- AZ_Assert(IsInStaticBlock(page), "All dynamic pages should be deleted by now!");
- }
- ;
-
- char* memBlock = reinterpret_cast(m_staticDataBlock);
- size_t pageDataSize = m_pageSize - sizeof(Page);
- for (unsigned int i = 0; i < m_numStaticPages; ++i)
- {
- Page* page = reinterpret_cast(memBlock+pageDataSize);
- page->~Page();
- memBlock += m_pageSize;
- }
- m_pageAllocator->DeAllocate(m_staticDataBlock);
- }
-}
-
-//=========================================================================
-// Allocate
-// [9/15/2009]
-//=========================================================================
-PoolSchema::pointer_type
-PoolSchemaImpl::Allocate(PoolSchema::size_type byteSize, PoolSchema::size_type alignment, int flags)
-{
- //AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't allocation from a different context/thread, use ThreadPoolAllocator!");
- (void)flags;
- void* address = m_allocator.Allocate(byteSize, alignment);
- return address;
-}
-
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-PoolSchemaImpl::DeAllocate(PoolSchema::pointer_type ptr)
-{
- //AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't deallocate from a different context/thread, use ThreadPoolAllocator!");
- m_allocator.DeAllocate(ptr);
-}
-
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-PoolSchema::size_type
-PoolSchemaImpl::AllocationSize(PoolSchema::pointer_type ptr)
-{
- //AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't use PoolAllocator from a different context/thread, use ThreadPoolAllocator!");
- return m_allocator.AllocationSize(ptr);
-}
-
-//=========================================================================
-// Pop
-// [9/15/2009]
-//=========================================================================
-AZ_FORCE_INLINE PoolSchemaImpl::Page*
-PoolSchemaImpl::PopFreePage()
-{
- Page* page = nullptr;
- if (!m_freePages.empty())
- {
- page = &m_freePages.front();
- m_freePages.pop_front();
- }
- return page;
-}
-
-//=========================================================================
-// Push
-// [9/15/2009]
-//=========================================================================
-AZ_INLINE void
-PoolSchemaImpl::PushFreePage(Page* page)
-{
- m_freePages.push_front(*page);
-}
-
-//=========================================================================
-// PurgePages
-// [9/11/2009]
-//=========================================================================
-void
-PoolSchemaImpl::GarbageCollect()
-{
- //if( m_ownerThread == AZStd::this_thread::get_id() )
- {
- if (m_isDynamic)
- {
- m_allocator.GarbageCollect();
-
- Bucket::PageListType staticPages;
while (!m_freePages.empty())
{
Page* page = &m_freePages.front();
+ (void)page;
m_freePages.pop_front();
- if (IsInStaticBlock(page))
- {
- staticPages.push_front(*page);
- }
- else
- {
- FreePage(page);
- }
- }
+ AZ_Assert(IsInStaticBlock(page), "All dynamic pages should be deleted by now!");
+ };
- while (!staticPages.empty())
+ char* memBlock = reinterpret_cast(m_staticDataBlock);
+ size_t pageDataSize = m_pageSize - sizeof(Page);
+ for (unsigned int i = 0; i < m_numStaticPages; ++i)
{
- Page* page = &staticPages.front();
- staticPages.pop_front();
- m_freePages.push_front(*page);
+ Page* page = reinterpret_cast(memBlock + pageDataSize);
+ page->~Page();
+ memBlock += m_pageSize;
}
- }
- }
-}
-
-//=========================================================================
-// SetupFreeList
-// [9/09/2009]
-//=========================================================================
-AZ_FORCE_INLINE void
-PoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize)
-{
- char* pageData = reinterpret_cast(this) - pageDataBlockSize;
- m_freeList.clear();
- // setup free list
- size_t numElements = pageDataBlockSize / elementSize;
- for (unsigned int i = 0; i < numElements; ++i)
- {
- char* address = pageData+i*elementSize;
- Page::FakeNode* node = new(address) Page::FakeNode();
- m_freeList.push_back(*node);
- }
-}
-
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-// ThreadPoolSchema
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-
-//=========================================================================
-// ThreadPoolSchema
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchema::ThreadPoolSchema(GetThreadPoolData getThreadPoolData, SetThreadPoolData setThreadPoolData)
- : m_impl(nullptr)
- , m_threadPoolGetter(getThreadPoolData)
- , m_threadPoolSetter(setThreadPoolData)
-{
-}
-
-//=========================================================================
-// ~ThreadPoolSchema
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchema::~ThreadPoolSchema()
-{
- AZ_Assert(m_impl==nullptr, "You did not destroy the thread pool schema!");
- delete m_impl;
-}
-
-//=========================================================================
-// Create
-// [9/15/2009]
-//=========================================================================
-bool ThreadPoolSchema::Create(const Descriptor& desc)
-{
- AZ_Assert(m_impl==nullptr, "PoolSchema already created!");
- if (m_impl == nullptr)
- {
- m_impl = aznew ThreadPoolSchemaImpl(desc, m_threadPoolGetter, m_threadPoolSetter);
- }
- return (m_impl!=nullptr);
-}
-
-//=========================================================================
-// Destroy
-// [9/15/2009]
-//=========================================================================
-bool ThreadPoolSchema::Destroy()
-{
- delete m_impl;
- m_impl = nullptr;
- return true;
-}
-//=========================================================================
-// Allocate
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchema::pointer_type
-ThreadPoolSchema::Allocate(size_type byteSize, size_type alignment, int flags, const char* name, const char* fileName, int lineNum, unsigned int suppressStackRecord)
-{
- (void)flags;
- (void)name;
- (void)fileName;
- (void)lineNum;
- (void)suppressStackRecord;
- return m_impl->Allocate(byteSize, alignment);
-}
-
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-ThreadPoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
-{
- (void)byteSize;
- (void)alignment;
- m_impl->DeAllocate(ptr);
-}
-
-//=========================================================================
-// Resize
-// [10/14/2018]
-//=========================================================================
-ThreadPoolSchema::size_type
-ThreadPoolSchema::Resize(pointer_type ptr, size_type newSize)
-{
- (void)ptr;
- (void)newSize;
- return 0; // unsupported
-}
-
-//=========================================================================
-// ReAllocate
-// [10/14/2018]
-//=========================================================================
-ThreadPoolSchema::pointer_type
-ThreadPoolSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
-{
- (void)ptr;
- (void)newSize;
- (void)newAlignment;
- AZ_Assert(false, "unsupported");
-
- return ptr;
-}
-
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-ThreadPoolSchema::size_type
-ThreadPoolSchema::AllocationSize(pointer_type ptr)
-{
- return m_impl->AllocationSize(ptr);
-}
-
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-ThreadPoolSchema::GarbageCollect()
-{
- m_impl->GarbageCollect();
-}
-
-auto ThreadPoolSchema::GetMaxContiguousAllocationSize() const -> size_type
-{
- return m_impl->m_maxAllocationSize;
-}
-
-//=========================================================================
-// NumAllocatedBytes
-// [11/1/2010]
-//=========================================================================
-ThreadPoolSchema::size_type
-ThreadPoolSchema::NumAllocatedBytes() const
-{
- size_type bytesAllocated = 0;
- {
- AZStd::lock_guard lock(m_impl->m_mutex);
- for (size_t i = 0; i < m_impl->m_threads.size(); ++i)
- {
- bytesAllocated += m_impl->m_threads[i]->m_allocator.m_numBytesAllocated;
- }
- }
- return bytesAllocated;
-}
-
-//=========================================================================
-// Capacity
-// [11/1/2010]
-//=========================================================================
-ThreadPoolSchema::size_type
-ThreadPoolSchema::Capacity() const
-{
- return m_impl->m_numStaticPages * m_impl->m_pageSize;
-}
-
-//=========================================================================
-// GetPageAllocator
-// [11/17/2010]
-//=========================================================================
-IAllocatorAllocate*
-ThreadPoolSchema::GetSubAllocator()
-{
- return m_impl->m_pageAllocator;
-}
-
-
-//=========================================================================
-// ThreadPoolSchemaImpl
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchemaImpl::ThreadPoolSchemaImpl(const ThreadPoolSchema::Descriptor& desc, ThreadPoolSchema::GetThreadPoolData threadPoolGetter, ThreadPoolSchema::SetThreadPoolData threadPoolSetter)
- : m_threadPoolGetter(threadPoolGetter)
- , m_threadPoolSetter(threadPoolSetter)
- , m_pageAllocator(desc.m_pageAllocator)
- , m_staticDataBlock(nullptr)
- , m_numStaticPages(desc.m_numStaticPages)
- , m_pageSize(desc.m_pageSize)
- , m_minAllocationSize(desc.m_minAllocationSize)
- , m_maxAllocationSize(desc.m_maxAllocationSize)
- , m_isDynamic(desc.m_isDynamic)
-{
-# if AZ_TRAIT_OS_HAS_CRITICAL_SECTION_SPIN_COUNT
- // In memory allocation case (usually tools) we might have high contention,
- // using spin lock will improve performance.
- SetCriticalSectionSpinCount(m_mutex.native_handle(), 4000);
-# endif
-
- if (m_pageAllocator == nullptr)
- {
- m_pageAllocator = &AllocatorInstance::Get(); // use the SystemAllocator if no page allocator is provided
- }
- if (m_numStaticPages)
- {
- // We store the page struct at the end of the block
- char* memBlock = reinterpret_cast(m_pageAllocator->Allocate(m_pageSize*m_numStaticPages, m_pageSize, 0, "AZSystem::ThreadPoolSchemaImpl::Page static array", __FILE__, __LINE__));
- m_staticDataBlock = memBlock;
- size_t pageDataSize = m_pageSize - sizeof(Page);
- for (unsigned int i = 0; i < m_numStaticPages; ++i)
- {
- Page* page = new(memBlock+pageDataSize)Page(m_threadPoolGetter());
- page->m_bin = 0xffffffff;
- PushFreePage(page);
- memBlock += m_pageSize;
- }
- }
-}
-
-//=========================================================================
-// ~ThreadPoolSchemaImpl
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchemaImpl::~ThreadPoolSchemaImpl()
-{
- // clean up all the thread data.
- // IMPORTANT: We assume/rely that all threads (except the calling one) are or will
- // destroyed before you create another instance of the pool allocation.
- // This should generally be ok since the all allocators are singletons.
- {
- AZStd::lock_guard lock(m_mutex);
- if (!m_threads.empty())
- {
- for (size_t i = 0; i < m_threads.size(); ++i)
- {
- if (m_threads[i])
- {
- // Force free all pages
- delete m_threads[i];
- }
- }
-
- /// reset the variable for the owner thread.
- m_threadPoolSetter(nullptr);
+ m_pageAllocator->DeAllocate(m_staticDataBlock);
}
}
- GarbageCollect();
-
- if (m_staticDataBlock)
+ //=========================================================================
+ // Allocate
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchema::pointer_type PoolSchemaImpl::Allocate(PoolSchema::size_type byteSize, PoolSchema::size_type alignment, int flags)
{
- Page* page;
- {
- AZStd::lock_guard lock(m_mutex);
- while (!m_freePages.empty())
- {
- page = &m_freePages.front();
- m_freePages.pop_front();
- AZ_Assert(IsInStaticBlock(page), "All dynamic pages should be free by now!");
- }
- }
-
- char* memBlock = reinterpret_cast(m_staticDataBlock);
- size_t pageDataSize = m_pageSize - sizeof(Page);
- for (unsigned int i = 0; i < m_numStaticPages; ++i)
- {
- page = reinterpret_cast(memBlock+pageDataSize);
- page->~Page();
- memBlock += m_pageSize;
- }
- m_pageAllocator->DeAllocate(m_staticDataBlock);
- }
-}
-
-//=========================================================================
-// Allocate
-// [9/15/2009]
-//=========================================================================
-ThreadPoolSchema::pointer_type
-ThreadPoolSchemaImpl::Allocate(ThreadPoolSchema::size_type byteSize, ThreadPoolSchema::size_type alignment, int flags)
-{
- (void)flags;
-
- ThreadPoolData* threadData = m_threadPoolGetter();
-
- if (threadData == nullptr)
- {
- threadData = aznew ThreadPoolData(this, m_pageSize, m_minAllocationSize, m_maxAllocationSize);
- m_threadPoolSetter(threadData);
- {
- AZStd::lock_guard lock(m_mutex);
- m_threads.push_back(threadData);
- }
- }
- else
- {
- // deallocate elements if they were freed from other threads
- Page::FakeNodeLF* fakeLFNode;
- while ((fakeLFNode = threadData->m_freedElements.pop())!=nullptr)
- {
- threadData->m_allocator.DeAllocate(fakeLFNode);
- }
+ // AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't allocation from a different context/thread, use
+ // ThreadPoolAllocator!");
+ (void)flags;
+ void* address = m_allocator.Allocate(byteSize, alignment);
+ return address;
}
- return threadData->m_allocator.Allocate(byteSize, alignment);
-}
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchemaImpl::DeAllocate(PoolSchema::pointer_type ptr)
+ {
+ // AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't deallocate from a different context/thread, use
+ // ThreadPoolAllocator!");
+ m_allocator.DeAllocate(ptr);
+ }
-//=========================================================================
-// DeAllocate
-// [9/15/2009]
-//=========================================================================
-void
-ThreadPoolSchemaImpl::DeAllocate(ThreadPoolSchema::pointer_type ptr)
-{
- Page* page = PageFromAddress(ptr);
- if (page==nullptr)
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchemaImpl::AllocationSize(PoolSchema::pointer_type ptr)
{
- AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
- return;
+ // AZ_Warning("Memory",m_ownerThread==AZStd::this_thread::get_id(),"You can't use PoolAllocator from a different context/thread, use
+ // ThreadPoolAllocator!");
+ return m_allocator.AllocationSize(ptr);
}
- AZ_Assert(page->m_threadData!=nullptr, ("We must have valid page thread data for the page!"));
- ThreadPoolData* threadData = m_threadPoolGetter();
- if (threadData == page->m_threadData)
- {
- // we can free here
- threadData->m_allocator.DeAllocate(ptr);
- }
- else
- {
- // push this element to be deleted from it's own thread!
- // cast the pointer to a fake lock free node
- Page::FakeNodeLF* fakeLFNode = reinterpret_cast(ptr);
-#ifdef AZ_DEBUG_BUILD
- // we need to reset the fakeLFNode because we share the memory.
- // otherwise we will assert the node is in the list
- fakeLFNode->m_next = 0;
-#endif
- page->m_threadData->m_freedElements.push(*fakeLFNode);
- }
-}
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-ThreadPoolSchema::size_type
-ThreadPoolSchemaImpl::AllocationSize(ThreadPoolSchema::pointer_type ptr)
-{
- Page* page = PageFromAddress(ptr);
- if (page==nullptr)
+ //=========================================================================
+ // Pop
+ // [9/15/2009]
+ //=========================================================================
+ AZ_FORCE_INLINE PoolSchemaImpl::Page* PoolSchemaImpl::PopFreePage()
{
- return 0;
- }
- AZ_Assert(page->m_threadData!=nullptr, ("We must have valid page thread data for the page!"));
- return page->m_threadData->m_allocator.AllocationSize(ptr);
-}
-
-//=========================================================================
-// PopFreePage
-// [9/15/2009]
-//=========================================================================
-AZ_INLINE ThreadPoolSchemaImpl::Page*
-ThreadPoolSchemaImpl::PopFreePage()
-{
- Page* page;
- {
- AZStd::lock_guard lock(m_mutex);
- if (m_freePages.empty())
- {
- page = nullptr;
- }
- else
+ Page* page = nullptr;
+ if (!m_freePages.empty())
{
page = &m_freePages.front();
m_freePages.pop_front();
}
+ return page;
}
- if (page)
- {
-# ifdef AZ_DEBUG_BUILD
- AZ_Assert(page->m_threadData == 0, "If we stored the free page properly we should have null here!");
-# endif
- // store the current thread data, used when we free elements
- page->m_threadData = m_threadPoolGetter();
- }
- return page;
-}
-//=========================================================================
-// PushFreePage
-// [9/15/2009]
-//=========================================================================
-AZ_INLINE void
-ThreadPoolSchemaImpl::PushFreePage(Page* page)
-{
-#ifdef AZ_DEBUG_BUILD
- page->m_threadData = 0;
-#endif
+ //=========================================================================
+ // Push
+ // [9/15/2009]
+ //=========================================================================
+ AZ_INLINE void PoolSchemaImpl::PushFreePage(Page* page)
{
- AZStd::lock_guard lock(m_mutex);
m_freePages.push_front(*page);
}
-}
-//=========================================================================
-// GarbageCollect
-// [9/15/2009]
-//=========================================================================
-void
-ThreadPoolSchemaImpl::GarbageCollect()
-{
- if (!m_isDynamic)
+ //=========================================================================
+ // PurgePages
+ // [9/11/2009]
+ //=========================================================================
+ void PoolSchemaImpl::GarbageCollect()
{
- return; // we have the memory statically allocated, can't collect garbage.
+ // if( m_ownerThread == AZStd::this_thread::get_id() )
+ {
+ if (m_isDynamic)
+ {
+ m_allocator.GarbageCollect();
+
+ Bucket::PageListType staticPages;
+ while (!m_freePages.empty())
+ {
+ Page* page = &m_freePages.front();
+ m_freePages.pop_front();
+ if (IsInStaticBlock(page))
+ {
+ staticPages.push_front(*page);
+ }
+ else
+ {
+ FreePage(page);
+ }
+ }
+
+ while (!staticPages.empty())
+ {
+ Page* page = &staticPages.front();
+ staticPages.pop_front();
+ m_freePages.push_front(*page);
+ }
+ }
+ }
}
- FreePagesType staticPages;
- AZStd::lock_guard lock(m_mutex);
- while (!m_freePages.empty())
+ //=========================================================================
+ // SetupFreeList
+ // [9/09/2009]
+ //=========================================================================
+ AZ_FORCE_INLINE void PoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize)
{
- Page* page = &m_freePages.front();
- m_freePages.pop_front();
- if (IsInStaticBlock(page))
+ char* pageData = reinterpret_cast(this) - pageDataBlockSize;
+ m_freeList.clear();
+ // setup free list
+ size_t numElements = pageDataBlockSize / elementSize;
+ for (unsigned int i = 0; i < numElements; ++i)
{
- staticPages.push_front(*page);
+ char* address = pageData + i * elementSize;
+ Page::FakeNode* node = new (address) Page::FakeNode();
+ m_freeList.push_back(*node);
+ }
+ }
+
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ // ThreadPoolSchema
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+
+ //=========================================================================
+ // ThreadPoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::ThreadPoolSchema(GetThreadPoolData getThreadPoolData, SetThreadPoolData setThreadPoolData)
+ : m_impl(nullptr)
+ , m_threadPoolGetter(getThreadPoolData)
+ , m_threadPoolSetter(setThreadPoolData)
+ {
+ }
+
+ //=========================================================================
+ // ~ThreadPoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::~ThreadPoolSchema()
+ {
+ AZ_Assert(m_impl == nullptr, "You did not destroy the thread pool schema!");
+ delete m_impl;
+ }
+
+ //=========================================================================
+ // Create
+ // [9/15/2009]
+ //=========================================================================
+ bool ThreadPoolSchema::Create(const Descriptor& desc)
+ {
+ AZ_Assert(m_impl == nullptr, "PoolSchema already created!");
+ if (m_impl == nullptr)
+ {
+ m_impl = aznew ThreadPoolSchemaImpl(desc, m_threadPoolGetter, m_threadPoolSetter);
+ }
+ return (m_impl != nullptr);
+ }
+
+ //=========================================================================
+ // Destroy
+ // [9/15/2009]
+ //=========================================================================
+ bool ThreadPoolSchema::Destroy()
+ {
+ delete m_impl;
+ m_impl = nullptr;
+ return true;
+ }
+ //=========================================================================
+ // Allocate
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::pointer_type ThreadPoolSchema::Allocate(
+ size_type byteSize,
+ size_type alignment,
+ int flags,
+ const char* name,
+ const char* fileName,
+ int lineNum,
+ unsigned int suppressStackRecord)
+ {
+ (void)flags;
+ (void)name;
+ (void)fileName;
+ (void)lineNum;
+ (void)suppressStackRecord;
+ return m_impl->Allocate(byteSize, alignment);
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ (void)byteSize;
+ (void)alignment;
+ m_impl->DeAllocate(ptr);
+ }
+
+ //=========================================================================
+ // Resize
+ // [10/14/2018]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::Resize(pointer_type ptr, size_type newSize)
+ {
+ (void)ptr;
+ (void)newSize;
+ return 0; // unsupported
+ }
+
+ //=========================================================================
+ // ReAllocate
+ // [10/14/2018]
+ //=========================================================================
+ ThreadPoolSchema::pointer_type ThreadPoolSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
+ {
+ (void)ptr;
+ (void)newSize;
+ (void)newAlignment;
+ AZ_Assert(false, "unsupported");
+
+ return ptr;
+ }
+
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::AllocationSize(pointer_type ptr)
+ {
+ return m_impl->AllocationSize(ptr);
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchema::GarbageCollect()
+ {
+ m_impl->GarbageCollect();
+ }
+
+ auto ThreadPoolSchema::GetMaxContiguousAllocationSize() const -> size_type
+ {
+ return m_impl->m_maxAllocationSize;
+ }
+
+ //=========================================================================
+ // NumAllocatedBytes
+ // [11/1/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::NumAllocatedBytes() const
+ {
+ size_type bytesAllocated = 0;
+ {
+ AZStd::lock_guard lock(m_impl->m_mutex);
+ for (size_t i = 0; i < m_impl->m_threads.size(); ++i)
+ {
+ bytesAllocated += m_impl->m_threads[i]->m_allocator.m_numBytesAllocated;
+ }
+ }
+ return bytesAllocated;
+ }
+
+ //=========================================================================
+ // Capacity
+ // [11/1/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::Capacity() const
+ {
+ return m_impl->m_numStaticPages * m_impl->m_pageSize;
+ }
+
+ //=========================================================================
+ // GetPageAllocator
+ // [11/17/2010]
+ //=========================================================================
+ IAllocatorAllocate* ThreadPoolSchema::GetSubAllocator()
+ {
+ return m_impl->m_pageAllocator;
+ }
+
+ //=========================================================================
+ // ThreadPoolSchemaImpl
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchemaImpl::ThreadPoolSchemaImpl(
+ const ThreadPoolSchema::Descriptor& desc,
+ ThreadPoolSchema::GetThreadPoolData threadPoolGetter,
+ ThreadPoolSchema::SetThreadPoolData threadPoolSetter)
+ : m_threadPoolGetter(threadPoolGetter)
+ , m_threadPoolSetter(threadPoolSetter)
+ , m_pageAllocator(desc.m_pageAllocator)
+ , m_staticDataBlock(nullptr)
+ , m_numStaticPages(desc.m_numStaticPages)
+ , m_pageSize(desc.m_pageSize)
+ , m_minAllocationSize(desc.m_minAllocationSize)
+ , m_maxAllocationSize(desc.m_maxAllocationSize)
+ , m_isDynamic(desc.m_isDynamic)
+ {
+#if AZ_TRAIT_OS_HAS_CRITICAL_SECTION_SPIN_COUNT
+ // In memory allocation case (usually tools) we might have high contention,
+ // using spin lock will improve performance.
+ SetCriticalSectionSpinCount(m_mutex.native_handle(), 4000);
+#endif
+
+ if (m_pageAllocator == nullptr)
+ {
+ m_pageAllocator = &AllocatorInstance::Get(); // use the SystemAllocator if no page allocator is provided
+ }
+ if (m_numStaticPages)
+ {
+ // We store the page struct at the end of the block
+ char* memBlock = reinterpret_cast(m_pageAllocator->Allocate(
+ m_pageSize * m_numStaticPages, m_pageSize, 0, "AZSystem::ThreadPoolSchemaImpl::Page static array", __FILE__, __LINE__));
+ m_staticDataBlock = memBlock;
+ size_t pageDataSize = m_pageSize - sizeof(Page);
+ for (unsigned int i = 0; i < m_numStaticPages; ++i)
+ {
+ Page* page = new (memBlock + pageDataSize) Page(m_threadPoolGetter());
+ page->m_bin = 0xffffffff;
+ PushFreePage(page);
+ memBlock += m_pageSize;
+ }
+ }
+ }
+
+ //=========================================================================
+ // ~ThreadPoolSchemaImpl
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchemaImpl::~ThreadPoolSchemaImpl()
+ {
+ // clean up all the thread data.
+ // IMPORTANT: We assume/rely that all threads (except the calling one) are or will
+ // destroyed before you create another instance of the pool allocation.
+ // This should generally be ok since the all allocators are singletons.
+ {
+ AZStd::lock_guard lock(m_mutex);
+ if (!m_threads.empty())
+ {
+ for (size_t i = 0; i < m_threads.size(); ++i)
+ {
+ if (m_threads[i])
+ {
+ // Force free all pages
+ delete m_threads[i];
+ }
+ }
+
+ /// reset the variable for the owner thread.
+ m_threadPoolSetter(nullptr);
+ }
+ }
+
+ GarbageCollect();
+
+ if (m_staticDataBlock)
+ {
+ Page* page;
+ {
+ AZStd::lock_guard lock(m_mutex);
+ while (!m_freePages.empty())
+ {
+ page = &m_freePages.front();
+ m_freePages.pop_front();
+ AZ_Assert(IsInStaticBlock(page), "All dynamic pages should be free by now!");
+ }
+ }
+
+ char* memBlock = reinterpret_cast(m_staticDataBlock);
+ size_t pageDataSize = m_pageSize - sizeof(Page);
+ for (unsigned int i = 0; i < m_numStaticPages; ++i)
+ {
+ page = reinterpret_cast(memBlock + pageDataSize);
+ page->~Page();
+ memBlock += m_pageSize;
+ }
+ m_pageAllocator->DeAllocate(m_staticDataBlock);
+ }
+ }
+
+ //=========================================================================
+ // Allocate
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::pointer_type ThreadPoolSchemaImpl::Allocate(
+ ThreadPoolSchema::size_type byteSize, ThreadPoolSchema::size_type alignment, int flags)
+ {
+ (void)flags;
+
+ ThreadPoolData* threadData = m_threadPoolGetter();
+
+ if (threadData == nullptr)
+ {
+ threadData = aznew ThreadPoolData(this, m_pageSize, m_minAllocationSize, m_maxAllocationSize);
+ m_threadPoolSetter(threadData);
+ {
+ AZStd::lock_guard lock(m_mutex);
+ m_threads.push_back(threadData);
+ }
}
else
{
- FreePage(page);
+ // deallocate elements if they were freed from other threads
+ Page::FakeNodeLF* fakeLFNode;
+ while ((fakeLFNode = threadData->m_freedElements.pop()) != nullptr)
+ {
+ threadData->m_allocator.DeAllocate(fakeLFNode);
+ }
+ }
+
+ return threadData->m_allocator.Allocate(byteSize, alignment);
+ }
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchemaImpl::DeAllocate(ThreadPoolSchema::pointer_type ptr)
+ {
+ Page* page = PageFromAddress(ptr);
+ if (page == nullptr)
+ {
+ AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
+ return;
+ }
+ AZ_Assert(page->m_threadData != nullptr, ("We must have valid page thread data for the page!"));
+ ThreadPoolData* threadData = m_threadPoolGetter();
+ if (threadData == page->m_threadData)
+ {
+ // we can free here
+ threadData->m_allocator.DeAllocate(ptr);
+ }
+ else
+ {
+ // push this element to be deleted from it's own thread!
+ // cast the pointer to a fake lock free node
+ Page::FakeNodeLF* fakeLFNode = reinterpret_cast(ptr);
+#ifdef AZ_DEBUG_BUILD
+ // we need to reset the fakeLFNode because we share the memory.
+ // otherwise we will assert the node is in the list
+ fakeLFNode->m_next = 0;
+#endif
+ page->m_threadData->m_freedElements.push(*fakeLFNode);
}
}
- while (!staticPages.empty())
- {
- Page* page = &staticPages.front();
- staticPages.pop_front();
- m_freePages.push_front(*page);
- }
-}
-//=========================================================================
-// SetupFreeList
-// [9/15/2009]
-//=========================================================================
-inline void
-ThreadPoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize)
-{
- char* pageData = reinterpret_cast(this) - pageDataBlockSize;
- m_freeList.clear();
- // setup free list
- size_t numElements = pageDataBlockSize / elementSize;
- for (size_t i = 0; i < numElements; ++i)
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchemaImpl::AllocationSize(ThreadPoolSchema::pointer_type ptr)
{
- char* address = pageData+i*elementSize;
- Page::FakeNode* node = new(address) Page::FakeNode();
- m_freeList.push_back(*node);
+ Page* page = PageFromAddress(ptr);
+ if (page == nullptr)
+ {
+ return 0;
+ }
+ AZ_Assert(page->m_threadData != nullptr, ("We must have valid page thread data for the page!"));
+ return page->m_threadData->m_allocator.AllocationSize(ptr);
}
-}
-//=========================================================================
-// ThreadPoolData::ThreadPoolData
-// [9/15/2009]
-//=========================================================================
-ThreadPoolData::ThreadPoolData(ThreadPoolSchemaImpl* alloc, size_t pageSize, size_t minAllocationSize, size_t maxAllocationSize)
- : m_allocator(alloc, pageSize, minAllocationSize, maxAllocationSize)
-{}
-
-//=========================================================================
-// ThreadPoolData::~ThreadPoolData
-// [9/15/2009]
-//=========================================================================
-ThreadPoolData::~ThreadPoolData()
-{
- // deallocate elements if they were freed from other threads
- ThreadPoolSchemaImpl::Page::FakeNodeLF* fakeLFNode;
- while ((fakeLFNode = m_freedElements.pop())!=nullptr)
+ //=========================================================================
+ // PopFreePage
+ // [9/15/2009]
+ //=========================================================================
+ AZ_INLINE ThreadPoolSchemaImpl::Page* ThreadPoolSchemaImpl::PopFreePage()
{
- m_allocator.DeAllocate(fakeLFNode);
+ Page* page;
+ {
+ AZStd::lock_guard lock(m_mutex);
+ if (m_freePages.empty())
+ {
+ page = nullptr;
+ }
+ else
+ {
+ page = &m_freePages.front();
+ m_freePages.pop_front();
+ }
+ }
+ if (page)
+ {
+#ifdef AZ_DEBUG_BUILD
+ AZ_Assert(page->m_threadData == 0, "If we stored the free page properly we should have null here!");
+#endif
+ // store the current thread data, used when we free elements
+ page->m_threadData = m_threadPoolGetter();
+ }
+ return page;
}
-}
+
+ //=========================================================================
+ // PushFreePage
+ // [9/15/2009]
+ //=========================================================================
+ AZ_INLINE void ThreadPoolSchemaImpl::PushFreePage(Page* page)
+ {
+#ifdef AZ_DEBUG_BUILD
+ page->m_threadData = 0;
+#endif
+ {
+ AZStd::lock_guard lock(m_mutex);
+ m_freePages.push_front(*page);
+ }
+ }
+
+ //=========================================================================
+ // GarbageCollect
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchemaImpl::GarbageCollect()
+ {
+ if (!m_isDynamic)
+ {
+ return; // we have the memory statically allocated, can't collect garbage.
+ }
+
+ FreePagesType staticPages;
+ AZStd::lock_guard lock(m_mutex);
+ while (!m_freePages.empty())
+ {
+ Page* page = &m_freePages.front();
+ m_freePages.pop_front();
+ if (IsInStaticBlock(page))
+ {
+ staticPages.push_front(*page);
+ }
+ else
+ {
+ FreePage(page);
+ }
+ }
+ while (!staticPages.empty())
+ {
+ Page* page = &staticPages.front();
+ staticPages.pop_front();
+ m_freePages.push_front(*page);
+ }
+ }
+
+ //=========================================================================
+ // SetupFreeList
+ // [9/15/2009]
+ //=========================================================================
+ inline void ThreadPoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize)
+ {
+ char* pageData = reinterpret_cast(this) - pageDataBlockSize;
+ m_freeList.clear();
+ // setup free list
+ size_t numElements = pageDataBlockSize / elementSize;
+ for (size_t i = 0; i < numElements; ++i)
+ {
+ char* address = pageData + i * elementSize;
+ Page::FakeNode* node = new (address) Page::FakeNode();
+ m_freeList.push_back(*node);
+ }
+ }
+
+ //=========================================================================
+ // ThreadPoolData::ThreadPoolData
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolData::ThreadPoolData(ThreadPoolSchemaImpl* alloc, size_t pageSize, size_t minAllocationSize, size_t maxAllocationSize)
+ : m_allocator(alloc, pageSize, minAllocationSize, maxAllocationSize)
+ {
+ }
+
+ //=========================================================================
+ // ThreadPoolData::~ThreadPoolData
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolData::~ThreadPoolData()
+ {
+ // deallocate elements if they were freed from other threads
+ ThreadPoolSchemaImpl::Page::FakeNodeLF* fakeLFNode;
+ while ((fakeLFNode = m_freedElements.pop()) != nullptr)
+ {
+ m_allocator.DeAllocate(fakeLFNode);
+ }
+ }
+
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h
index cfc5e3ea07..ef38dcf24f 100644
--- a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h
+++ b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h
@@ -5,8 +5,7 @@
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
-#ifndef AZ_POOL_ALLOCATION_SCHEME_H
-#define AZ_POOL_ALLOCATION_SCHEME_H
+#pragma once
#include
@@ -164,8 +163,3 @@ namespace AZ
template
AZ_THREAD_LOCAL ThreadPoolData* ThreadPoolSchemaHelper::m_threadData = 0;
}
-
-#endif // AZ_POOL_ALLOCATION_SCHEME_H
-#pragma once
-
-
diff --git a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp
index ddcc046b8e..15cf5de8bc 100644
--- a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp
+++ b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp
@@ -21,8 +21,8 @@
#define AZCORE_SYSTEM_ALLOCATOR_HEAP 3
#if !defined(AZCORE_SYSTEM_ALLOCATOR)
- // define the default
- #define AZCORE_SYSTEM_ALLOCATOR AZCORE_SYSTEM_ALLOCATOR_HPHA
+// define the default
+#define AZCORE_SYSTEM_ALLOCATOR AZCORE_SYSTEM_ALLOCATOR_HPHA
#endif
#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
@@ -35,12 +35,11 @@
#error "Invalid allocator selected for SystemAllocator"
#endif
-
-using namespace AZ;
-
-//////////////////////////////////////////////////////////////////////////
-// Globals - we use global storage for the first memory schema, since we can't use dynamic memory!
-static bool g_isSystemSchemaUsed = false;
+namespace AZ
+{
+ //////////////////////////////////////////////////////////////////////////
+ // Globals - we use global storage for the first memory schema, since we can't use dynamic memory!
+ static bool g_isSystemSchemaUsed = false;
#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
static AZStd::aligned_storage::value>::type g_systemSchema;
#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
@@ -49,268 +48,275 @@ static bool g_isSystemSchemaUsed = false;
static AZStd::aligned_storage::value>::type g_systemSchema;
#endif
-//////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
-//=========================================================================
-// SystemAllocator
-// [9/2/2009]
-//=========================================================================
-SystemAllocator::SystemAllocator()
- : AllocatorBase(this, "SystemAllocator", "Fundamental generic memory allocator")
- , m_isCustom(false)
- , m_allocator(nullptr)
- , m_ownsOSAllocator(false)
-{
-}
-
-//=========================================================================
-// ~SystemAllocator
-//=========================================================================
-SystemAllocator::~SystemAllocator()
-{
- if (IsReady())
+ //=========================================================================
+ // SystemAllocator
+ // [9/2/2009]
+ //=========================================================================
+ SystemAllocator::SystemAllocator()
+ : AllocatorBase(this, "SystemAllocator", "Fundamental generic memory allocator")
+ , m_isCustom(false)
+ , m_allocator(nullptr)
+ , m_ownsOSAllocator(false)
{
- Destroy();
- }
-}
-
-//=========================================================================
-// ~Create
-// [9/2/2009]
-//=========================================================================
-bool
-SystemAllocator::Create(const Descriptor& desc)
-{
- AZ_Assert(IsReady() == false, "System allocator was already created!");
- if (IsReady())
- {
- return false;
}
- m_desc = desc;
-
- if (!AllocatorInstance::IsReady())
+ //=========================================================================
+ // ~SystemAllocator
+ //=========================================================================
+ SystemAllocator::~SystemAllocator()
{
- m_ownsOSAllocator = true;
- AllocatorInstance::Create();
- }
- bool isReady = false;
- if (desc.m_custom)
- {
- m_isCustom = true;
- m_allocator = desc.m_custom;
- isReady = true;
- }
- else
- {
- m_isCustom = false;
-#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
- HphaSchema::Descriptor heapDesc;
- heapDesc.m_pageSize = desc.m_heap.m_pageSize;
- heapDesc.m_poolPageSize = desc.m_heap.m_poolPageSize;
- AZ_Assert(desc.m_heap.m_numFixedMemoryBlocks <= 1, "We support max1 memory block at the moment!");
- if (desc.m_heap.m_numFixedMemoryBlocks > 0)
+ if (IsReady())
{
- heapDesc.m_fixedMemoryBlock = desc.m_heap.m_fixedMemoryBlocks[0];
- heapDesc.m_fixedMemoryBlockByteSize = desc.m_heap.m_fixedMemoryBlocksByteSize[0];
+ Destroy();
}
- heapDesc.m_subAllocator = desc.m_heap.m_subAllocator;
- heapDesc.m_isPoolAllocations = desc.m_heap.m_isPoolAllocations;
- // Fix SystemAllocator from growing in small chunks
- heapDesc.m_systemChunkSize = desc.m_heap.m_systemChunkSize;
-#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
- MallocSchema::Descriptor heapDesc;
-#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
- HeapSchema::Descriptor heapDesc;
- memcpy(heapDesc.m_memoryBlocks, desc.m_heap.m_memoryBlocks, sizeof(heapDesc.m_memoryBlocks));
- memcpy(heapDesc.m_memoryBlocksByteSize, desc.m_heap.m_memoryBlocksByteSize, sizeof(heapDesc.m_memoryBlocksByteSize));
- heapDesc.m_numMemoryBlocks = desc.m_heap.m_numMemoryBlocks;
-#endif
- if (&AllocatorInstance::Get() == this) // if we are the system allocator
- {
- AZ_Assert(!g_isSystemSchemaUsed, "AZ::SystemAllocator MUST be created first! It's the source of all allocations!");
+ }
-#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
- m_allocator = new(&g_systemSchema)HphaSchema(heapDesc);
-#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
- m_allocator = new(&g_systemSchema)MallocSchema(heapDesc);
-#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
- m_allocator = new(&g_systemSchema)HeapSchema(heapDesc);
-#endif
- g_isSystemSchemaUsed = true;
+ //=========================================================================
+ // ~Create
+ // [9/2/2009]
+ //=========================================================================
+ bool SystemAllocator::Create(const Descriptor& desc)
+ {
+ AZ_Assert(IsReady() == false, "System allocator was already created!");
+ if (IsReady())
+ {
+ return false;
+ }
+
+ m_desc = desc;
+
+ if (!AllocatorInstance::IsReady())
+ {
+ m_ownsOSAllocator = true;
+ AllocatorInstance::Create();
+ }
+ bool isReady = false;
+ if (desc.m_custom)
+ {
+ m_isCustom = true;
+ m_allocator = desc.m_custom;
isReady = true;
}
else
{
- // this class should be inheriting from SystemAllocator
- AZ_Assert(AllocatorInstance::IsReady(), "System allocator must be created before any other allocator! They allocate from it.");
+ m_isCustom = false;
+#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
+ HphaSchema::Descriptor heapDesc;
+ heapDesc.m_pageSize = desc.m_heap.m_pageSize;
+ heapDesc.m_poolPageSize = desc.m_heap.m_poolPageSize;
+ AZ_Assert(desc.m_heap.m_numFixedMemoryBlocks <= 1, "We support max1 memory block at the moment!");
+ if (desc.m_heap.m_numFixedMemoryBlocks > 0)
+ {
+ heapDesc.m_fixedMemoryBlock = desc.m_heap.m_fixedMemoryBlocks[0];
+ heapDesc.m_fixedMemoryBlockByteSize = desc.m_heap.m_fixedMemoryBlocksByteSize[0];
+ }
+ heapDesc.m_subAllocator = desc.m_heap.m_subAllocator;
+ heapDesc.m_isPoolAllocations = desc.m_heap.m_isPoolAllocations;
+ // Fix SystemAllocator from growing in small chunks
+ heapDesc.m_systemChunkSize = desc.m_heap.m_systemChunkSize;
+#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
+ MallocSchema::Descriptor heapDesc;
+#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
+ HeapSchema::Descriptor heapDesc;
+ memcpy(heapDesc.m_memoryBlocks, desc.m_heap.m_memoryBlocks, sizeof(heapDesc.m_memoryBlocks));
+ memcpy(heapDesc.m_memoryBlocksByteSize, desc.m_heap.m_memoryBlocksByteSize, sizeof(heapDesc.m_memoryBlocksByteSize));
+ heapDesc.m_numMemoryBlocks = desc.m_heap.m_numMemoryBlocks;
+#endif
+ if (&AllocatorInstance::Get() == this) // if we are the system allocator
+ {
+ AZ_Assert(!g_isSystemSchemaUsed, "AZ::SystemAllocator MUST be created first! It's the source of all allocations!");
#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
- m_allocator = azcreate(HphaSchema, (heapDesc), SystemAllocator);
+ m_allocator = new (&g_systemSchema) HphaSchema(heapDesc);
#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
- m_allocator = azcreate(MallocSchema, (heapDesc), SystemAllocator);
+ m_allocator = new (&g_systemSchema) MallocSchema(heapDesc);
#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
- m_allocator = azcreate(HeapSchema, (heapDesc), SystemAllocator);
+ m_allocator = new (&g_systemSchema) HeapSchema(heapDesc);
#endif
- if (m_allocator == nullptr)
- {
- isReady = false;
+ g_isSystemSchemaUsed = true;
+ isReady = true;
}
else
{
- isReady = true;
+ // this class should be inheriting from SystemAllocator
+ AZ_Assert(
+ AllocatorInstance::IsReady(),
+ "System allocator must be created before any other allocator! They allocate from it.");
+
+#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
+ m_allocator = azcreate(HphaSchema, (heapDesc), SystemAllocator);
+#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
+ m_allocator = azcreate(MallocSchema, (heapDesc), SystemAllocator);
+#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
+ m_allocator = azcreate(HeapSchema, (heapDesc), SystemAllocator);
+#endif
+ if (m_allocator == nullptr)
+ {
+ isReady = false;
+ }
+ else
+ {
+ isReady = true;
+ }
}
}
+
+ return isReady;
}
- return isReady;
-}
-
-//=========================================================================
-// Allocate
-// [9/2/2009]
-//=========================================================================
-void
-SystemAllocator::Destroy()
-{
- if (g_isSystemSchemaUsed)
+ //=========================================================================
+ // Allocate
+ // [9/2/2009]
+ //=========================================================================
+ void SystemAllocator::Destroy()
{
- int dummy;
- (void)dummy;
- }
-
- if (!m_isCustom)
- {
- if ((void*)m_allocator == (void*)&g_systemSchema)
+ if (g_isSystemSchemaUsed)
{
+ int dummy;
+ (void)dummy;
+ }
+
+ if (!m_isCustom)
+ {
+ if ((void*)m_allocator == (void*)&g_systemSchema)
+ {
#if AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HPHA
- static_cast(m_allocator)->~HphaSchema();
+ static_cast(m_allocator)->~HphaSchema();
#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_MALLOC
- static_cast(m_allocator)->~MallocSchema();
+ static_cast(m_allocator)->~MallocSchema();
#elif AZCORE_SYSTEM_ALLOCATOR == AZCORE_SYSTEM_ALLOCATOR_HEAP
- static_cast(m_allocator)->~HeapSchema();
+ static_cast(m_allocator)->~HeapSchema();
#endif
- g_isSystemSchemaUsed = false;
+ g_isSystemSchemaUsed = false;
+ }
+ else
+ {
+ azdestroy(m_allocator);
+ }
}
- else
+
+ if (m_ownsOSAllocator)
{
- azdestroy(m_allocator);
+ AllocatorInstance::Destroy();
+ m_ownsOSAllocator = false;
}
}
- if (m_ownsOSAllocator)
+ AllocatorDebugConfig SystemAllocator::GetDebugConfig()
{
- AllocatorInstance::Destroy();
- m_ownsOSAllocator = false;
- }
-}
-
-AllocatorDebugConfig SystemAllocator::GetDebugConfig()
-{
- return AllocatorDebugConfig()
- .StackRecordLevels(m_desc.m_stackRecordLevels)
- .UsesMemoryGuards(!m_isCustom)
- .MarksUnallocatedMemory(!m_isCustom)
- .ExcludeFromDebugging(!m_desc.m_allocationRecords);
-}
-
-IAllocatorAllocate* SystemAllocator::GetSchema()
-{
- return m_allocator;
-}
-
-//=========================================================================
-// Allocate
-// [9/2/2009]
-//=========================================================================
-SystemAllocator::pointer_type
-SystemAllocator::Allocate(size_type byteSize, size_type alignment, int flags, const char* name, const char* fileName, int lineNum, unsigned int suppressStackRecord)
-{
- if (byteSize == 0)
- {
- return nullptr;
- }
- AZ_Assert(byteSize > 0, "You can not allocate 0 bytes!");
- AZ_Assert((alignment & (alignment - 1)) == 0, "Alignment must be power of 2!");
-
- byteSize = MemorySizeAdjustedUp(byteSize);
- SystemAllocator::pointer_type address = m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1);
-
- if (address == nullptr)
- {
- // Free all memory we can and try again!
- AllocatorManager::Instance().GarbageCollect();
-
- address = m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1);
+ return AllocatorDebugConfig()
+ .StackRecordLevels(m_desc.m_stackRecordLevels)
+ .UsesMemoryGuards(!m_isCustom)
+ .MarksUnallocatedMemory(!m_isCustom)
+ .ExcludeFromDebugging(!m_desc.m_allocationRecords);
}
- if (address == nullptr)
+ IAllocatorAllocate* SystemAllocator::GetSchema()
{
- byteSize = MemorySizeAdjustedDown(byteSize); // restore original size
+ return m_allocator;
}
- AZ_Assert(address != nullptr, "SystemAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize, alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum);
+ //=========================================================================
+ // Allocate
+ // [9/2/2009]
+ //=========================================================================
+ SystemAllocator::pointer_type SystemAllocator::Allocate(
+ size_type byteSize,
+ size_type alignment,
+ int flags,
+ const char* name,
+ const char* fileName,
+ int lineNum,
+ unsigned int suppressStackRecord)
+ {
+ if (byteSize == 0)
+ {
+ return nullptr;
+ }
+ AZ_Assert(byteSize > 0, "You can not allocate 0 bytes!");
+ AZ_Assert((alignment & (alignment - 1)) == 0, "Alignment must be power of 2!");
- AZ_PROFILE_MEMORY_ALLOC_EX(MemoryReserved, fileName, lineNum, address, byteSize, name);
- AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1));
+ byteSize = MemorySizeAdjustedUp(byteSize);
+ SystemAllocator::pointer_type address =
+ m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1);
- return address;
-}
+ if (address == nullptr)
+ {
+ // Free all memory we can and try again!
+ AllocatorManager::Instance().GarbageCollect();
-//=========================================================================
-// DeAllocate
-// [9/2/2009]
-//=========================================================================
-void
-SystemAllocator::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
-{
- byteSize = MemorySizeAdjustedUp(byteSize);
- AZ_PROFILE_MEMORY_FREE(MemoryReserved, ptr);
- AZ_MEMORY_PROFILE(ProfileDeallocation(ptr, byteSize, alignment, nullptr));
- m_allocator->DeAllocate(ptr, byteSize, alignment);
-}
+ address = m_allocator->Allocate(byteSize, alignment, flags, name, fileName, lineNum, suppressStackRecord + 1);
+ }
-//=========================================================================
-// ReAllocate
-// [9/13/2011]
-//=========================================================================
-SystemAllocator::pointer_type
-SystemAllocator::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
-{
- newSize = MemorySizeAdjustedUp(newSize);
+ if (address == nullptr)
+ {
+ byteSize = MemorySizeAdjustedDown(byteSize); // restore original size
+ }
- AZ_MEMORY_PROFILE(ProfileReallocationBegin(ptr, newSize));
- AZ_PROFILE_MEMORY_FREE(MemoryReserved, ptr);
- pointer_type newAddress = m_allocator->ReAllocate(ptr, newSize, newAlignment);
- AZ_PROFILE_MEMORY_ALLOC(MemoryReserved, newAddress, newSize, "SystemAllocator realloc");
- AZ_MEMORY_PROFILE(ProfileReallocationEnd(ptr, newAddress, newSize, newAlignment));
+ AZ_Assert(
+ address != nullptr, "SystemAllocator: Failed to allocate %d bytes aligned on %d (flags: 0x%08x) %s : %s (%d)!", byteSize,
+ alignment, flags, name ? name : "(no name)", fileName ? fileName : "(no file name)", lineNum);
- return newAddress;
-}
+ AZ_PROFILE_MEMORY_ALLOC_EX(MemoryReserved, fileName, lineNum, address, byteSize, name);
+ AZ_MEMORY_PROFILE(ProfileAllocation(address, byteSize, alignment, name, fileName, lineNum, suppressStackRecord + 1));
-//=========================================================================
-// Resize
-// [8/12/2011]
-//=========================================================================
-SystemAllocator::size_type
-SystemAllocator::Resize(pointer_type ptr, size_type newSize)
-{
- newSize = MemorySizeAdjustedUp(newSize);
- size_type resizedSize = m_allocator->Resize(ptr, newSize);
+ return address;
+ }
- AZ_MEMORY_PROFILE(ProfileResize(ptr, resizedSize));
+ //=========================================================================
+ // DeAllocate
+ // [9/2/2009]
+ //=========================================================================
+ void SystemAllocator::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ byteSize = MemorySizeAdjustedUp(byteSize);
+ AZ_PROFILE_MEMORY_FREE(MemoryReserved, ptr);
+ AZ_MEMORY_PROFILE(ProfileDeallocation(ptr, byteSize, alignment, nullptr));
+ m_allocator->DeAllocate(ptr, byteSize, alignment);
+ }
- return MemorySizeAdjustedDown(resizedSize);
-}
+ //=========================================================================
+ // ReAllocate
+ // [9/13/2011]
+ //=========================================================================
+ SystemAllocator::pointer_type SystemAllocator::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
+ {
+ newSize = MemorySizeAdjustedUp(newSize);
-//=========================================================================
-//
-// [8/12/2011]
-//=========================================================================
-SystemAllocator::size_type
-SystemAllocator::AllocationSize(pointer_type ptr)
-{
- size_type allocSize = MemorySizeAdjustedDown(m_allocator->AllocationSize(ptr));
+ AZ_MEMORY_PROFILE(ProfileReallocationBegin(ptr, newSize));
+ AZ_PROFILE_MEMORY_FREE(MemoryReserved, ptr);
+ pointer_type newAddress = m_allocator->ReAllocate(ptr, newSize, newAlignment);
+ AZ_PROFILE_MEMORY_ALLOC(MemoryReserved, newAddress, newSize, "SystemAllocator realloc");
+ AZ_MEMORY_PROFILE(ProfileReallocationEnd(ptr, newAddress, newSize, newAlignment));
- return allocSize;
-}
+ return newAddress;
+ }
+
+ //=========================================================================
+ // Resize
+ // [8/12/2011]
+ //=========================================================================
+ SystemAllocator::size_type SystemAllocator::Resize(pointer_type ptr, size_type newSize)
+ {
+ newSize = MemorySizeAdjustedUp(newSize);
+ size_type resizedSize = m_allocator->Resize(ptr, newSize);
+
+ AZ_MEMORY_PROFILE(ProfileResize(ptr, resizedSize));
+
+ return MemorySizeAdjustedDown(resizedSize);
+ }
+
+ //=========================================================================
+ //
+ // [8/12/2011]
+ //=========================================================================
+ SystemAllocator::size_type SystemAllocator::AllocationSize(pointer_type ptr)
+ {
+ size_type allocSize = MemorySizeAdjustedDown(m_allocator->AllocationSize(ptr));
+
+ return allocSize;
+ }
+
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h
index c02ada5843..c730b8dde6 100644
--- a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h
+++ b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h
@@ -5,8 +5,7 @@
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
-#ifndef AZCORE_SYS_ALLOCATOR_H
-#define AZCORE_SYS_ALLOCATOR_H
+#pragma once
#include
@@ -120,7 +119,5 @@ namespace AZ
};
}
-#endif // AZCORE_SYS_ALLOCATOR_H
-#pragma once
diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp
index e28a289c9e..81ede7a5d3 100644
--- a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp
+++ b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp
@@ -105,6 +105,8 @@ void ScriptContextDebug::ConnectHook()
void ScriptContextDebug::DisconnectHook()
{
lua_sethook(m_context.NativeContext(), nullptr, 0, 0);
+ m_currentStackLevel = -1;
+ m_stepStackLevel = -1;
}
//=========================================================================
@@ -651,6 +653,11 @@ void AZ::LuaHook(lua_State* l, lua_Debug* ar)
context->PopCallstack();
}
context->m_currentStackLevel--;
+
+ if (context->m_currentStackLevel == -1)
+ {
+ context->m_stepStackLevel = -1;
+ }
}
else if (ar->event == LUA_HOOKLINE)
{
@@ -731,7 +738,7 @@ void AZ::LuaHook(lua_State* l, lua_Debug* ar)
//}
}
- if (doBreak)
+ if (doBreak && bp->m_lineNumber > 0)
{
context->m_luaDebug = ar;
context->m_breakCallback(context, bp);
diff --git a/Code/Framework/AzCore/AzCore/Time/TimeSystem.cpp b/Code/Framework/AzCore/AzCore/Time/TimeSystem.cpp
index a5e0908ac4..7ba306fbe6 100644
--- a/Code/Framework/AzCore/AzCore/Time/TimeSystem.cpp
+++ b/Code/Framework/AzCore/AzCore/Time/TimeSystem.cpp
@@ -23,11 +23,11 @@ namespace AZ
}
}
- void cvar_t_simulationTickDeltaOverride_Changed(const float& value)
+ void cvar_t_simulationTickDeltaOverride_Changed(const int64_t& value)
{
if (auto* timeSystem = AZ::Interface::Get())
{
- timeSystem->SetSimulationTickDeltaOverride(AZ::SecondsToTimeMs(value));
+ timeSystem->SetSimulationTickDeltaOverride(static_cast(value));
}
}
@@ -44,8 +44,8 @@ namespace AZ
AZ_CVAR(float, t_simulationTickScale, 1.0f, cvar_t_simulationTickScale_Changed, AZ::ConsoleFunctorFlags::Null,
"A scalar amount to adjust time passage by, 1.0 == realtime, 0.5 == half realtime, 2.0 == doubletime");
- AZ_CVAR(float, t_simulationTickDeltaOverride, 0.0f, cvar_t_simulationTickDeltaOverride_Changed, AZ::ConsoleFunctorFlags::Null,
- "If > 0, overrides the simulation tick delta time with the provided value (Seconds) and ignores any t_simulationTickScale value.");
+ AZ_CVAR(int64_t, t_simulationTickDeltaOverride, 0, cvar_t_simulationTickDeltaOverride_Changed, AZ::ConsoleFunctorFlags::Null,
+ "If > 0, overrides the simulation tick delta time with the provided value (Milliseconds) and ignores any t_simulationTickScale value.");
AZ_CVAR(int, t_simulationTickRate, 0, cvar_t_simulationTickRate_Changed, AZ::ConsoleFunctorFlags::Null,
"The minimum rate to force the game simulation tick to run. 0 for as fast as possible. 30 = ~33ms, 60 = ~16ms");
@@ -62,6 +62,7 @@ namespace AZ
TimeSystem::TimeSystem()
{
m_lastInvokedTimeUs = static_cast(AZStd::GetTimeNowMicroSecond());
+ m_realLastInvokedTimeUs = static_cast(AZStd::GetTimeNowMicroSecond());
AZ::Interface::Register(this);
ITimeRequestBus::Handler::BusConnect();
}
@@ -101,7 +102,11 @@ namespace AZ
TimeUs TimeSystem::GetRealElapsedTimeUs() const
{
- return static_cast(AZStd::GetTimeNowMicroSecond());
+ const TimeUs currentTime = static_cast(AZStd::GetTimeNowMicroSecond());
+ m_realAccumulatedTimeUs += currentTime - m_realLastInvokedTimeUs;
+ m_realLastInvokedTimeUs = currentTime;
+
+ return m_realAccumulatedTimeUs;
}
TimeUs TimeSystem::GetSimulationTickDeltaTimeUs() const
@@ -171,7 +176,7 @@ namespace AZ
if (timeUs != m_simulationTickDeltaOverride)
{
m_simulationTickDeltaOverride = timeUs;
- t_simulationTickDeltaOverride = AZ::TimeUsToSeconds(timeUs); //update the cvar
+ t_simulationTickDeltaOverride = static_cast (timeMs); // update the cvar
}
}
diff --git a/Code/Framework/AzCore/AzCore/Time/TimeSystem.h b/Code/Framework/AzCore/AzCore/Time/TimeSystem.h
index ded70c9be5..9d5f2a6d7c 100644
--- a/Code/Framework/AzCore/AzCore/Time/TimeSystem.h
+++ b/Code/Framework/AzCore/AzCore/Time/TimeSystem.h
@@ -64,6 +64,14 @@ namespace AZ
//! Mutable to allow GetElapsedTimeMs/TimeUs() to be a const functions.
mutable TimeUs m_accumulatedTimeUs = AZ::Time::ZeroTimeUs;
+ //! Used to calculate the delta time between calls to GetRealElapsedTimeMs/TimeUs().
+ //! Mutable to allow GetRealElapsedTimeMs/TimeUs() to be a const functions.
+ mutable TimeUs m_realLastInvokedTimeUs = AZ::Time::ZeroTimeUs;
+
+ //! Accumulates the delta time of GetRealElapsedTimeMs/TimeUs() calls.
+ //! Mutable to allow GetRealElapsedTimeMs/TimeUs() to be a const functions.
+ mutable TimeUs m_realAccumulatedTimeUs = AZ::Time::ZeroTimeUs;
+
//! The current game tick delta time.
//! Can be affected by time system cvars.
//! Updated in AdvanceTickDeltaTimes().
diff --git a/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp b/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp
index cbff646990..9ef38d7115 100644
--- a/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp
+++ b/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp
@@ -408,4 +408,106 @@ namespace UnitTest
Matrix4x4 m = Matrix4x4::CreateFromQuaternion(rotQuat);
AZ_TEST_ASSERT(m.IsClose(rotMatrix));
}
+
+ class QuaternionScaledAxisAngleConversionFixture
+ : public ::testing::TestWithParam
+ {
+ public:
+ AZ::Quaternion GetAbs(const AZ::Quaternion& in)
+ {
+ // Take the shortest path for quaternions containing rotations bigger than 180.0°.
+ if (in.GetW() < 0.0f)
+ {
+ return -in;
+ }
+
+ return in;
+ }
+ };
+
+ static const AZ::Quaternion RotationRepresentationConversionTestQuats[] =
+ {
+ AZ::Quaternion::CreateIdentity(),
+ -AZ::Quaternion::CreateIdentity(),
+ AZ::Quaternion::CreateRotationX(AZ::Constants::TwoPi),
+ AZ::Quaternion::CreateRotationY(AZ::Constants::Pi),
+ AZ::Quaternion::CreateRotationZ(AZ::Constants::HalfPi),
+ AZ::Quaternion::CreateRotationX(AZ::Constants::QuarterPi),
+ AZ::Quaternion(0.64f, 0.36f, 0.48f, 0.48f),
+ AZ::Quaternion(0.70f, -0.34f, 0.10f, 0.62f),
+ AZ::Quaternion(-0.38f, 0.34f, 0.70f, -0.50f),
+ AZ::Quaternion(0.70f, -0.34f, -0.38f, 0.50f),
+ AZ::Quaternion(0.00f, 0.00f, -0.28f, 0.96f),
+ AZ::Quaternion(0.24f, -0.64f, 0.72f, 0.12f),
+ AZ::Quaternion(-0.66f, 0.62f, 0.42f, 0.06f)
+ };
+
+ TEST_P(QuaternionScaledAxisAngleConversionFixture, ScaledAxisAngleQuatRoundtripTests)
+ {
+ const AZ::Quaternion testQuat = GetAbs(GetParam());
+
+ // Convert test quaternion to scaled axis-angle representation.
+ const AZ::Vector3 scaledAxisAngle = testQuat.ConvertToScaledAxisAngle();
+
+ // Convert the scaled axis-angle back into a quaternion.
+ AZ::Quaternion backFromScaledAxisAngle = AZ::Quaternion::CreateFromScaledAxisAngle(scaledAxisAngle);
+
+ // Compare the original quaternion with the one after the conversion.
+ EXPECT_TRUE(testQuat.IsClose(backFromScaledAxisAngle, 1e-6f));
+ }
+
+ TEST_P(QuaternionScaledAxisAngleConversionFixture, AxisAngleQuatRoundtripTests)
+ {
+ const AZ::Quaternion testQuat = GetAbs(GetParam());
+
+ // Convert test quaternion to axis-angle representation.
+ AZ::Vector3 axis;
+ float angle;
+ testQuat.ConvertToAxisAngle(axis, angle);
+
+ // Convert the axis-angle back into a quaternion and compare the original quaternion with the one after the conversion.
+ const AZ::Quaternion backFromAxisAngle = AZ::Quaternion::CreateFromAxisAngle(axis, angle);
+ EXPECT_TRUE(testQuat.IsClose(backFromAxisAngle, 1e-6f));
+ }
+
+ TEST_P(QuaternionScaledAxisAngleConversionFixture, CompareAxisAngleConversionTests)
+ {
+ const AZ::Quaternion testQuat = GetAbs(GetParam());
+
+ // Convert test quaternion to scaled axis-angle representation.
+ const AZ::Vector3 scaledAxisAngle = testQuat.ConvertToScaledAxisAngle();
+
+ // Convert test quaternion to axis-angle representation and scale it manually.
+ AZ::Vector3 axis;
+ float angle;
+ testQuat.ConvertToAxisAngle(axis, angle);
+
+ // Compare the scaled result to the version from the helper that directly converts it to scaled axis-angle.
+ AZ::Vector3 scaledResult = axis*angle;
+ EXPECT_TRUE(scaledResult.IsClose(scaledAxisAngle, 1e-5f));
+ }
+
+ TEST_P(QuaternionScaledAxisAngleConversionFixture, CompareScaledAxisAngleConversionTests)
+ {
+ const AZ::Quaternion testQuat = GetAbs(GetParam());
+
+ // Convert test quaternion to axis-angle representation and scale it manually.
+ AZ::Vector3 axis;
+ float angle;
+ testQuat.ConvertToAxisAngle(axis, angle);
+ AZ::Vector3 scaledResult = axis*angle;
+
+ // Special case handling for identity rotation.
+ AZ::Vector3 axisFromScaledResult = scaledResult.GetNormalized();
+ float angleFromScaledResult = scaledResult.GetLength();
+ if (AZ::IsClose(angleFromScaledResult, 0.0f))
+ {
+ axisFromScaledResult = AZ::Vector3::CreateAxisY();
+ }
+
+ const AZ::Quaternion backFromAxisAngle = AZ::Quaternion::CreateFromAxisAngle(axisFromScaledResult, angleFromScaledResult);
+ EXPECT_TRUE(testQuat.IsClose(backFromAxisAngle, 1e-6f));
+ }
+
+ INSTANTIATE_TEST_CASE_P(MATH_Quaternion, QuaternionScaledAxisAngleConversionFixture, ::testing::ValuesIn(RotationRepresentationConversionTestQuats));
}
diff --git a/Code/Framework/AzCore/Tests/Time/TimeTests.cpp b/Code/Framework/AzCore/Tests/Time/TimeTests.cpp
index 7ba01ec0e0..446368a8ca 100644
--- a/Code/Framework/AzCore/Tests/Time/TimeTests.cpp
+++ b/Code/Framework/AzCore/Tests/Time/TimeTests.cpp
@@ -11,8 +11,7 @@
namespace UnitTest
{
- class TimeTests
- : public AllocatorsFixture
+ class TimeTests : public AllocatorsFixture
{
public:
void SetUp() override
@@ -77,4 +76,192 @@ namespace UnitTest
int64_t delta = static_cast(timeMs) - static_cast(timeUsToMs);
EXPECT_LT(abs(delta), 1);
}
-}
+
+ class TimeSystemTests : public AllocatorsTestFixture
+ {
+ public:
+ void SetUp() override
+ {
+ SetupAllocator();
+ m_controlTime = static_cast(AZStd::GetTimeNowMicroSecond());
+ m_timeSystem = AZStd::make_unique();
+ }
+
+ void TearDown() override
+ {
+ m_controlTime = AZ::Time::ZeroTimeUs;
+ m_timeSystem.reset();
+ TeardownAllocator();
+ }
+
+ AZ::TimeUs GetDiff(AZ::TimeUs time1, AZ::TimeUs time2) const
+ {
+ // AZ::TimeUs is unsigned so make sure to not underflow.
+ return time1 > time2 ? time1 - time2 : time2 - time1;
+ }
+
+ AZ::TimeUs m_controlTime;
+ AZStd::unique_ptr m_timeSystem;
+ };
+
+ TEST_F(TimeSystemTests, GetRealElapsedTimeUs)
+ {
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // find the delta for the control and from GetRealElapsedTimeUs
+ const AZ::TimeUs baseline = static_cast(AZStd::GetTimeNowMicroSecond()) - m_controlTime;
+ const AZ::TimeUs elapsedTime = m_timeSystem->GetRealElapsedTimeUs();
+
+ const AZ::TimeUs diff = GetDiff(baseline, elapsedTime);
+
+ // elapsedTime should be within 10 microseconds from baseline.
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+ }
+
+ TEST_F(TimeSystemTests, GetElapsedTimeUs)
+ {
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // find the delta for the control and from GetElapsedTimeUs
+ const AZ::TimeUs baseline = static_cast(AZStd::GetTimeNowMicroSecond()) - m_controlTime;
+ const AZ::TimeUs elapsedTime = m_timeSystem->GetElapsedTimeUs();
+
+ const AZ::TimeUs diff = GetDiff(baseline, elapsedTime);
+
+ // elapsedTime should be within 10 microseconds from baseline.
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+ }
+
+ TEST_F(TimeSystemTests, ElapsedTimeScales)
+ {
+ // slow down 'time'
+ m_timeSystem->SetSimulationTickScale(0.5f);
+
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // find the delta for the control and from GetElapsedTimeUs
+ const AZ::TimeUs baseline = static_cast(AZStd::GetTimeNowMicroSecond()) - m_controlTime;
+ const AZ::TimeUs elapsedTime = m_timeSystem->GetElapsedTimeUs();
+ const AZ::TimeUs halfBaseline = (baseline / AZ::TimeUs{ 2 });
+
+ // elapsedTime should be about half of the control.
+ const AZ::TimeUs diff = GetDiff(halfBaseline, elapsedTime);
+
+ // elapsedTime should be within 10 microseconds from baseline.
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+
+ // reset time scale
+ m_timeSystem->SetSimulationTickScale(1.0f);
+ }
+
+ TEST_F(TimeSystemTests, AdvanceTickDeltaTimes)
+ {
+ // advance the tick delta to get a clean base.
+ m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineStart = static_cast(AZStd::GetTimeNowMicroSecond());
+
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // advance the tick delta.
+ const AZ::TimeUs delta = m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineDelta = static_cast(AZStd::GetTimeNowMicroSecond()) - baselineStart;
+
+ // the delta should be close to the baselineDelta.
+ const AZ::TimeUs diff = GetDiff(delta, baselineDelta);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+ }
+
+ TEST_F(TimeSystemTests, SimulationAndRealTickDeltaTimesWithNoTimeScale)
+ {
+ // advance the tick delta to get a clean base.
+ m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineStart = static_cast(AZStd::GetTimeNowMicroSecond());
+
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // advance the tick delta.
+ const AZ::TimeUs delta = m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineDelta = static_cast(AZStd::GetTimeNowMicroSecond()) - baselineStart;
+
+ // the delta should be close to the baselineDelta.
+ AZ::TimeUs diff = GetDiff(delta, baselineDelta);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+
+ // the delta should be the same as GetSimulationTickDeltaTimeUs and near GetRealTickDeltaTimeUs
+ const AZ::TimeUs simDeltaTime = m_timeSystem->GetSimulationTickDeltaTimeUs();
+ EXPECT_EQ(delta, simDeltaTime);
+
+ const AZ::TimeUs realDeltaTime = m_timeSystem->GetRealTickDeltaTimeUs();
+ diff = GetDiff(delta, realDeltaTime);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+ }
+
+ TEST_F(TimeSystemTests, SimulationAndRealTickDeltaTimesWithTimeScale)
+ {
+ // advance the tick delta to get a clean base.
+ m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineStart = static_cast(AZStd::GetTimeNowMicroSecond());
+
+ // slow down 'time';
+ m_timeSystem->SetSimulationTickScale(0.5f);
+
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // advance the tick delta.
+ const AZ::TimeUs delta = m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineDelta = static_cast(AZStd::GetTimeNowMicroSecond()) - baselineStart;
+ const AZ::TimeUs halfBaselineDelta = (baselineDelta / AZ::TimeUs{ 2 });
+
+ // the delta should be half the baselineDelta
+ AZ::TimeUs diff = GetDiff(delta, halfBaselineDelta);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+
+ // the delta should be the same as GetSimulationTickDeltaTimeUs
+ const AZ::TimeUs simDeltaTime = m_timeSystem->GetSimulationTickDeltaTimeUs();
+ EXPECT_EQ(delta, simDeltaTime);
+
+ // the delta should be near half the GetRealTickDeltaTimeUs
+ const AZ::TimeUs realDeltaTime = m_timeSystem->GetRealTickDeltaTimeUs();
+ const AZ::TimeUs halfRealDeltaTime = (realDeltaTime / AZ::TimeUs{ 2 });
+ diff = GetDiff(delta, halfRealDeltaTime);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+
+ // reset time scale
+ m_timeSystem->SetSimulationTickScale(1.0f);
+ }
+
+ TEST_F(TimeSystemTests, SimulationTickDeltaOverride)
+ {
+ // advance the tick delta to get a clean base.
+ m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineStart = static_cast(AZStd::GetTimeNowMicroSecond());
+
+ // set the tick delta override
+ const AZ::TimeMs tickOverride = AZ::TimeMs{ 3462 };
+ m_timeSystem->SetSimulationTickDeltaOverride(tickOverride);
+
+ // sleep for a bit to advance time.
+ AZStd::this_thread::sleep_for(AZStd::chrono::milliseconds(2));
+
+ // advance the tick delta.
+ const AZ::TimeUs delta = m_timeSystem->AdvanceTickDeltaTimes();
+ const AZ::TimeUs baselineDelta = static_cast(AZStd::GetTimeNowMicroSecond()) - baselineStart;
+
+ // the delta should be equal to the tickOverride
+ EXPECT_EQ(delta, AZ::TimeMsToUs(tickOverride));
+
+ // real tick delta should be near the baselineDelta
+ const AZ::TimeUs realDeltaTime = m_timeSystem->GetRealTickDeltaTimeUs();
+ const AZ::TimeUs diff = GetDiff(realDeltaTime, baselineDelta);
+ EXPECT_LT(diff, AZ::TimeUs{ 10 });
+
+ // reset the tick delta override
+ m_timeSystem->SetSimulationTickDeltaOverride(AZ::Time::ZeroTimeMs);
+ }
+} // namespace UnitTest
diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp
index 856d40e57d..cd33f60b91 100644
--- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp
+++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp
@@ -213,27 +213,33 @@ namespace AzFramework
Camera Cameras::StepCamera(const Camera& targetCamera, const ScreenVector& cursorDelta, const float scrollDelta, const float deltaTime)
{
- for (int i = 0; i < m_idleCameraInputs.size();)
+ for (int idleIndex = 0; idleIndex < m_idleCameraInputs.size();)
{
- auto& cameraInput = m_idleCameraInputs[i];
+ auto& cameraInput = m_idleCameraInputs[idleIndex];
const bool canBegin = cameraInput->Beginning() &&
AZStd::all_of(m_activeCameraInputs.cbegin(), m_activeCameraInputs.cend(),
[](const auto& input)
{
return !input->Exclusive();
}) &&
- (!cameraInput->Exclusive() || (cameraInput->Exclusive() && m_activeCameraInputs.empty()));
+ (!cameraInput->Exclusive() || m_activeCameraInputs.empty());
if (canBegin)
{
m_activeCameraInputs.push_back(cameraInput);
using AZStd::swap;
- swap(m_idleCameraInputs[i], m_idleCameraInputs[m_idleCameraInputs.size() - 1]);
+ swap(m_idleCameraInputs[idleIndex], m_idleCameraInputs[m_idleCameraInputs.size() - 1]);
m_idleCameraInputs.pop_back();
}
else
{
- i++;
+ // if a camera attempted to start but was not allowed to, ensure activation is cancelled
+ if (!cameraInput->Idle())
+ {
+ cameraInput->CancelActivation();
+ }
+
+ idleIndex++;
}
}
@@ -245,21 +251,21 @@ namespace AzFramework
return acc;
});
- for (int i = 0; i < m_activeCameraInputs.size();)
+ for (int activeIndex = 0; activeIndex < m_activeCameraInputs.size();)
{
- auto& cameraInput = m_activeCameraInputs[i];
+ auto& cameraInput = m_activeCameraInputs[activeIndex];
if (cameraInput->Ending())
{
cameraInput->ClearActivation();
m_idleCameraInputs.push_back(cameraInput);
using AZStd::swap;
- swap(m_activeCameraInputs[i], m_activeCameraInputs[m_activeCameraInputs.size() - 1]);
+ swap(m_activeCameraInputs[activeIndex], m_activeCameraInputs[m_activeCameraInputs.size() - 1]);
m_activeCameraInputs.pop_back();
}
else
{
cameraInput->ContinueActivation();
- i++;
+ activeIndex++;
}
}
@@ -470,9 +476,10 @@ namespace AzFramework
{
if (input->m_state == InputChannel::State::Began)
{
- m_translation |= TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds);
- if (m_translation != TranslationType::Nil)
+ if (auto translation = TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds);
+ translation != TranslationType::Nil)
{
+ m_translation |= translation;
BeginActivation();
}
@@ -484,11 +491,16 @@ namespace AzFramework
// ensure we don't process end events in the idle state
else if (input->m_state == InputChannel::State::Ended && !Idle())
{
- m_translation &= ~(TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds));
- if (m_translation == TranslationType::Nil)
+ if (auto translation = TranslationFromKey(input->m_channelId, m_translateCameraInputChannelIds);
+ translation != TranslationType::Nil)
{
- EndActivation();
+ m_translation &= ~translation;
+ if (m_translation == TranslationType::Nil)
+ {
+ EndActivation();
+ }
}
+
if (input->m_channelId == m_translateCameraInputChannelIds.m_boostChannelId)
{
m_boost = false;
diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h
index 96a9b54dc8..b652d616b2 100644
--- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h
+++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h
@@ -185,6 +185,11 @@ namespace AzFramework
m_activation = Activation::Ending;
}
+ void CancelActivation()
+ {
+ m_activation = Activation::Idle;
+ }
+
void ContinueActivation()
{
// continue activation is called after the first step of the camera input,
diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h
index 7a5d7fdc62..27031c6ab3 100644
--- a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h
+++ b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h
@@ -10,6 +10,7 @@
#include
#include
+#include
#include
#include
@@ -203,6 +204,12 @@ namespace AzFramework
return AZ::Vector2(aznumeric_cast(screenPoint.m_x), aznumeric_cast(screenPoint.m_y));
}
+ //! Return an AZ::Vector3 from a ScreenPoint (including z/depth value, defaulting to 0.0f).
+ inline AZ::Vector3 Vector3FromScreenPoint(const ScreenPoint& screenPoint, const float z = 0.0f)
+ {
+ return AZ::Vector3(aznumeric_cast(screenPoint.m_x), aznumeric_cast(screenPoint.m_y), z);
+ }
+
//! Return an AZ::Vector2 from a ScreenVector.
inline AZ::Vector2 Vector2FromScreenVector(const ScreenVector& screenVector)
{
diff --git a/Code/Framework/AzFramework/Tests/CameraInputTests.cpp b/Code/Framework/AzFramework/Tests/CameraInputTests.cpp
index 5f327fb2fd..0ddf9e89b9 100644
--- a/Code/Framework/AzFramework/Tests/CameraInputTests.cpp
+++ b/Code/Framework/AzFramework/Tests/CameraInputTests.cpp
@@ -416,4 +416,78 @@ namespace UnitTest
using ::testing::FloatNear;
EXPECT_THAT(m_camera.m_pitch, FloatNear(expectedPitch, 0.001f));
}
+
+ TEST_F(CameraInputFixture, InvalidTranslationInputKeyCannotBeginTranslateCameraInputAgain)
+ {
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Began });
+
+ const bool consumed =
+ m_cameraSystem->HandleEvents(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Began });
+
+ using ::testing::IsFalse;
+ using ::testing::IsTrue;
+ EXPECT_THAT(consumed, IsTrue());
+ EXPECT_THAT(m_firstPersonTranslateCamera->Beginning(), IsFalse());
+ EXPECT_THAT(m_firstPersonTranslateCamera->Active(), IsTrue());
+ }
+
+ TEST_F(CameraInputFixture, InvalidTranslationInputKeyDownCannotBeginTranslateCameraInputAgain)
+ {
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Began });
+
+ const bool consumed =
+ m_cameraSystem->HandleEvents(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Began });
+
+ using ::testing::IsFalse;
+ using ::testing::IsTrue;
+ EXPECT_THAT(consumed, IsTrue());
+ EXPECT_THAT(m_firstPersonTranslateCamera->Beginning(), IsFalse());
+ EXPECT_THAT(m_firstPersonTranslateCamera->Active(), IsTrue());
+ }
+
+ TEST_F(CameraInputFixture, InvalidTranslationInputKeyUpDoesNotAffectTranslateCameraInputEnd)
+ {
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Began });
+
+ const bool consumed =
+ m_cameraSystem->HandleEvents(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Began });
+
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Ended });
+
+ using ::testing::IsFalse;
+ using ::testing::IsTrue;
+ EXPECT_THAT(consumed, IsTrue());
+ EXPECT_THAT(m_firstPersonTranslateCamera->Idle(), IsTrue());
+ }
+
+ TEST_F(CameraInputFixture, OrbitCameraInputCannotBeLeftInInvalidStateIfItCannotFullyBeginAfterInputChannelBegin)
+ {
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Began });
+
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Began });
+
+ using ::testing::IsFalse;
+ using ::testing::IsTrue;
+ EXPECT_THAT(m_orbitCamera->Beginning(), IsFalse());
+ EXPECT_THAT(m_orbitCamera->Idle(), IsTrue());
+ }
+
+ TEST_F(CameraInputFixture, OrbitCameraInputCannotBeLeftInInvalidStateIfItCannotFullyBeginAfterInputChannelBeginAndEnd)
+ {
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_translateCameraInputChannelIds.m_forwardChannelId,
+ AzFramework::InputChannel::State::Began });
+
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Began });
+ HandleEventAndUpdate(AzFramework::DiscreteInputEvent{ m_orbitChannelId, AzFramework::InputChannel::State::Ended });
+
+ using ::testing::IsFalse;
+ using ::testing::IsTrue;
+ EXPECT_THAT(m_orbitCamera->Ending(), IsFalse());
+ EXPECT_THAT(m_orbitCamera->Idle(), IsTrue());
+ }
} // namespace UnitTest
diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h
index 66227c692b..865a571d3b 100644
--- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h
+++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h
@@ -26,29 +26,33 @@ namespace AzManipulatorTestFramework
{
public:
virtual ~ViewportInteractionInterface() = default;
- //! Return the camera state.
+ //! Returns the camera state.
virtual AzFramework::CameraState GetCameraState() = 0;
- //! Set the camera state.
+ //! Sets the camera state.
virtual void SetCameraState(const AzFramework::CameraState& cameraState) = 0;
- //! Retrieve the debug display.
+ //! Retrieves the debug display.
virtual AzFramework::DebugDisplayRequests& GetDebugDisplay() = 0;
- //! Set if grid snapping is enabled or not.
+ //! Sets if grid snapping is enabled or not.
virtual void SetGridSnapping(bool enabled) = 0;
- //! Set if angular snapping is enabled or not.
+ //! Sets if angular snapping is enabled or not.
virtual void SetAngularSnapping(bool enabled) = 0;
- //! Set the grid size.
+ //! Sets the grid size.
virtual void SetGridSize(float size) = 0;
- //! Set the angular step.
+ //! Sets the angular step.
virtual void SetAngularStep(float step) = 0;
- //! Get the viewport id.
+ //! Gets the viewport id.
virtual AzFramework::ViewportId GetViewportId() const = 0;
//! Updates the visibility state.
//! Updates which entities are currently visible given the current camera state.
virtual void UpdateVisibility() = 0;
- //! Set if sticky select is enabled or not.
+ //! Sets if sticky select is enabled or not.
virtual void SetStickySelect(bool enabled) = 0;
- //! Get default Editor Camera Position.
+ //! Gets default Editor Camera Position.
virtual AZ::Vector3 DefaultEditorCameraPosition() const = 0;
+ //! Sets if icons are visible in the viewport.
+ virtual void SetIconsVisible(bool visible) = 0;
+ //! Sets if helpers are visible in the viewport.
+ virtual void SetHelpersVisible(bool visible) = 0;
};
//! This interface is used to simulate the manipulator manager while the manipulators are under test.
diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h
index 63392eb82f..8528795206 100644
--- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h
+++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h
@@ -26,6 +26,7 @@ namespace UnitTest
using IndirectCallManipulatorViewportInteraction = AzManipulatorTestFramework::IndirectCallManipulatorViewportInteraction;
using ImmediateModeActionDispatcher = AzManipulatorTestFramework::ImmediateModeActionDispatcher;
+ public:
void SetUpEditorFixtureImpl() override
{
ToolsApplicationFixtureT::SetUpEditorFixtureImpl();
@@ -43,7 +44,6 @@ namespace UnitTest
ToolsApplicationFixtureT::TearDownEditorFixtureImpl();
}
- public:
AzFramework::CameraState m_cameraState;
AZStd::unique_ptr m_actionDispatcher;
AZStd::unique_ptr m_viewportManipulatorInteraction;
diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h
index 1dcbea2125..653644aefe 100644
--- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h
+++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h
@@ -27,29 +27,6 @@ namespace AzManipulatorTestFramework
const AZ::Vector3& position = AZ::Vector3::CreateZero(),
float radius = 1.0f);
- //! Create a mouse pick from the specified ray and screen point.
- AzToolsFramework::ViewportInteraction::MousePick CreateMousePick(
- const AZ::Vector3& origin, const AZ::Vector3& direction, const AzFramework::ScreenPoint& screenPoint);
-
- //! Build a mouse pick from the specified mouse position and camera state.
- AzToolsFramework::ViewportInteraction::MousePick BuildMousePick(
- const AzFramework::ScreenPoint& screenPoint, const AzFramework::CameraState& cameraState);
-
- //! Create a mouse interaction from the specified pick, buttons, interaction id and keyboard modifiers.
- AzToolsFramework::ViewportInteraction::MouseInteraction CreateMouseInteraction(
- const AzToolsFramework::ViewportInteraction::MousePick& mousePick,
- AzToolsFramework::ViewportInteraction::MouseButtons buttons,
- AzToolsFramework::ViewportInteraction::InteractionId interactionId,
- AzToolsFramework::ViewportInteraction::KeyboardModifiers modifiers);
-
- //! Create a mouse buttons from the specified mouse button.
- AzToolsFramework::ViewportInteraction::MouseButtons CreateMouseButtons(AzToolsFramework::ViewportInteraction::MouseButton button);
-
- //! Create a mouse interaction event from the specified interaction and event.
- AzToolsFramework::ViewportInteraction::MouseInteractionEvent CreateMouseInteractionEvent(
- const AzToolsFramework::ViewportInteraction::MouseInteraction& mouseInteraction,
- AzToolsFramework::ViewportInteraction::MouseEvent event);
-
//! Dispatch a mouse event to the main manipulator manager via a bus call.
void DispatchMouseInteractionEvent(const AzToolsFramework::ViewportInteraction::MouseInteractionEvent& event);
diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h
index da2804dfd5..2d5a41c2c2 100644
--- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h
+++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h
@@ -24,9 +24,12 @@ namespace AzManipulatorTestFramework
explicit IndirectCallManipulatorViewportInteraction(AZStd::shared_ptr debugDisplayRequests);
~IndirectCallManipulatorViewportInteraction();
- // ManipulatorViewportInteractionInterface ...
+ // ManipulatorViewportInteraction overrides ...
const ViewportInteractionInterface& GetViewportInteraction() const override;
const ManipulatorManagerInterface& GetManipulatorManager() const override;
+ // make non-const overloads visible
+ using ManipulatorViewportInteraction::GetViewportInteraction;
+ using ManipulatorViewportInteraction::GetManipulatorManager;
private:
AZStd::unique_ptr m_viewportInteraction;
diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h
index 1568c1a931..f29245bb34 100644
--- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h
+++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h
@@ -39,7 +39,8 @@ namespace AzManipulatorTestFramework
AzFramework::ViewportId GetViewportId() const override;
void UpdateVisibility() override;
void SetStickySelect(bool enabled) override;
- AZ::Vector3 DefaultEditorCameraPosition() const override;
+ void SetIconsVisible(bool visible) override;
+ void SetHelpersVisible(bool visible) override;
// ViewportInteractionRequestBus overrides ...
AzFramework::CameraState GetCameraState() override;
@@ -58,6 +59,9 @@ namespace AzManipulatorTestFramework
float ManipulatorLineBoundWidth() const override;
float ManipulatorCircleBoundWidth() const override;
bool StickySelectEnabled() const override;
+ AZ::Vector3 DefaultEditorCameraPosition() const override;
+ bool IconsVisible() const override;
+ bool HelpersVisible() const override;
// EditorEntityViewportInteractionRequestBus overrides ...
void FindVisibleEntities(AZStd::vector& visibleEntities) override;
@@ -68,10 +72,12 @@ namespace AzManipulatorTestFramework
AzFramework::EntityVisibilityQuery m_entityVisibilityQuery;
AZStd::shared_ptr m_debugDisplayRequests;
AzFramework::CameraState m_cameraState;
+ float m_gridSize = 1.0f;
+ float m_angularStep = 0.0f;
bool m_gridSnapping = false;
bool m_angularSnapping = false;
bool m_stickySelect = true;
- float m_gridSize = 1.0f;
- float m_angularStep = 0.0f;
+ bool m_iconsVisible = true;
+ bool m_helpersVisible = true;
};
} // namespace AzManipulatorTestFramework
diff --git a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp
index 6fbf2cb219..4c7d7f6901 100644
--- a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp
+++ b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp
@@ -82,49 +82,6 @@ namespace AzManipulatorTestFramework
return manipulator;
}
- AzToolsFramework::ViewportInteraction::MousePick CreateMousePick(
- const AZ::Vector3& origin, const AZ::Vector3& direction, const AzFramework::ScreenPoint& screenPoint)
- {
- return { origin, direction, screenPoint };
- }
-
- AzToolsFramework::ViewportInteraction::MousePick BuildMousePick(
- const AzFramework::ScreenPoint& screenPoint, const AzFramework::CameraState& cameraState)
- {
- const auto nearPlaneWorldPosition = AzFramework::ScreenToWorld(screenPoint, cameraState);
-
- AzToolsFramework::ViewportInteraction::MousePick mousePick;
- mousePick.m_screenCoordinates = screenPoint;
- mousePick.m_rayOrigin = nearPlaneWorldPosition;
- mousePick.m_rayDirection = (nearPlaneWorldPosition - cameraState.m_position).GetNormalized();
-
- return mousePick;
- }
-
- MouseInteraction CreateMouseInteraction(
- const MousePick& mousePick, MouseButtons buttons, InteractionId interactionId, KeyboardModifiers modifiers)
- {
- AzToolsFramework::ViewportInteraction::MouseInteraction interaction;
- interaction.m_mousePick = mousePick;
- interaction.m_mouseButtons = buttons;
- interaction.m_interactionId = interactionId;
- interaction.m_keyboardModifiers = modifiers;
-
- return interaction;
- }
-
- MouseButtons CreateMouseButtons(MouseButton button)
- {
- MouseButtons buttons;
- buttons.m_mouseButtons = static_cast(button);
- return buttons;
- }
-
- MouseInteractionEvent CreateMouseInteractionEvent(const MouseInteraction& mouseInteraction, MouseEvent event)
- {
- return MouseInteractionEvent(mouseInteraction, event, /*captured=*/false);
- }
-
void DispatchMouseInteractionEvent(const MouseInteractionEvent& event)
{
AzToolsFramework::EditorInteractionSystemViewportSelectionRequestBus::Event(
diff --git a/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp b/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp
index aea93ca342..715c2b1083 100644
--- a/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp
+++ b/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp
@@ -120,7 +120,8 @@ namespace AzManipulatorTestFramework
void ImmediateModeActionDispatcher::MousePositionImpl(const AzFramework::ScreenPoint& position)
{
const auto cameraState = m_manipulatorViewportInteraction.GetViewportInteraction().GetCameraState();
- GetMouseInteractionEvent()->m_mouseInteraction.m_mousePick = BuildMousePick(position, cameraState);
+ GetMouseInteractionEvent()->m_mouseInteraction.m_mousePick =
+ AzToolsFramework::ViewportInteraction::BuildMousePick(cameraState, position);
GetMouseInteractionEvent()->m_mouseEvent = AzToolsFramework::ViewportInteraction::MouseEvent::Move;
m_manipulatorViewportInteraction.GetManipulatorManager().ConsumeMouseInteractionEvent(*m_event);
}
diff --git a/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp b/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp
index 1a28c8cad1..b7fd5e2b73 100644
--- a/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp
+++ b/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp
@@ -10,6 +10,7 @@
#include
#include