diff --git a/AutomatedTesting/Gem/Code/Source/AutoGen/NetworkTestPlayerComponent.AutoComponent.xml b/AutomatedTesting/Gem/Code/Source/AutoGen/NetworkTestPlayerComponent.AutoComponent.xml
index 46d6191835..251d2b25af 100644
--- a/AutomatedTesting/Gem/Code/Source/AutoGen/NetworkTestPlayerComponent.AutoComponent.xml
+++ b/AutomatedTesting/Gem/Code/Source/AutoGen/NetworkTestPlayerComponent.AutoComponent.xml
@@ -19,8 +19,8 @@
-
-
+
+
@@ -29,10 +29,10 @@
-
+
-
-
+
+
diff --git a/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt
index 2a5e1d7cab..c8629bbe8b 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()
@@ -21,9 +22,8 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
NAME AutomatedTesting::AWSTests
TEST_SUITE awsi
TEST_SERIAL
- PATH ${CMAKE_CURRENT_LIST_DIR}/${PAL_PLATFORM_NAME}/
+ PATH ${CMAKE_CURRENT_LIST_DIR}/
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/EditorPythonTestTools/editor_python_test_tools/utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py
index 7b526033dd..35a50b6090 100644
--- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py
+++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py
@@ -101,30 +101,56 @@ class TestHelper:
Report.critical_result(msgtuple_success_fail, general.is_in_game_mode())
@staticmethod
- def multiplayer_enter_game_mode(msgtuple_success_fail: Tuple[str, str], sv_default_player_spawn_asset: str) -> None:
+ def find_line(window, line, print_infos):
"""
- :param msgtuple_success_fail: The tuple with the expected/unexpected messages for entering game mode.
- :param sv_default_player_spawn_asset: The path to the network player prefab that will be automatically spawned upon entering gamemode. The engine default is "prefabs/player.network.spawnable"
+ Looks for an expected line in a list of tracer log lines
+ :param window: The log's window name. For example, logs printed via script-canvas use the "Script" window.
+ :param line: The log message to search for.
+ :param print_infos: A list of PrintInfos collected by Tracer to search. Example options: your_tracer.warnings, your_tracer.errors, your_tracer.asserts, or your_tracer.prints
- :return: None
+ :return: True if the line is found, otherwise false.
"""
+ for printInfo in print_infos:
+ if printInfo.window == window.strip() and printInfo.message.strip() == line:
+ return True
+ return False
- # looks for an expected line in a list of tracers lines
- # lines: the tracer list of lines to search. options are section_tracer.warnings, section_tracer.errors, section_tracer.asserts, section_tracer.prints
- # return: true if the line is found, otherwise false
- def find_expected_line(expected_line, lines):
- found_lines = [printInfo.message.strip() for printInfo in lines]
- return expected_line in found_lines
+ @staticmethod
+ def succeed_if_log_line_found(window, line, print_infos, time_out):
+ """
+ Looks for a line in a list of tracer log lines and reports success if found.
+ :param window: The log's window name. For example, logs printed via script-canvas use the "Script" window.
+ :param line: The log message we're hoping to find.
+ :param print_infos: A list of PrintInfos collected by Tracer to search. Example options: your_tracer.warnings, your_tracer.errors, your_tracer.asserts, or your_tracer.prints
+ :param time_out: The total amount of time to wait before giving up looking for the expected line.
- def wait_for_critical_expected_line(expected_line, lines, time_out):
- TestHelper.wait_for_condition(lambda : find_expected_line(expected_line, lines), time_out)
- Report.critical_result(("Found expected line: " + expected_line, "Failed to find expected line: " + expected_line), find_expected_line(expected_line, lines))
+ :return: No return value, but if the message is found, a successful critical result is reported; otherwise failure.
+ """
+ TestHelper.wait_for_condition(lambda : TestHelper.find_line(window, line, print_infos), time_out)
+ Report.critical_result(("Found expected line: " + line, "Failed to find expected line: " + line), TestHelper.find_line(window, line, print_infos))
- def wait_for_critical_unexpected_line(unexpected_line, lines, time_out):
- TestHelper.wait_for_condition(lambda : find_expected_line(unexpected_line, lines), time_out)
- Report.critical_result(("Unexpected line not found: " + unexpected_line, "Unexpected line found: " + unexpected_line), not find_expected_line(unexpected_line, lines))
+ @staticmethod
+ def fail_if_log_line_found(window, line, print_infos, time_out):
+ """
+ Reports a failure if a log line in a list of tracer log lines is found.
+ :param window: The log's window name. For example, logs printed via script-canvas use the "Script" window.
+ :param line: The log message we're hoping to not find.
+ :param print_infos: A list of PrintInfos collected by Tracer to search. Example options: your_tracer.warnings, your_tracer.errors, your_tracer.asserts, or your_tracer.prints
+ :param time_out: The total amount of time to wait before giving up looking for the unexpected line. If time runs out and we don't see the unexpected line then report a success.
+ :return: No return value, but if the line is found, a failed critical result is reported; otherwise success.
+ """
+ TestHelper.wait_for_condition(lambda : TestHelper.find_line(window, line, print_infos), time_out)
+ Report.critical_result(("Unexpected line not found: " + line, "Unexpected line found: " + line), not TestHelper.find_line(window, line, print_infos))
+ @staticmethod
+ def multiplayer_enter_game_mode(msgtuple_success_fail: Tuple[str, str], sv_default_player_spawn_asset: str) -> None:
+ """
+ :param msgtuple_success_fail: The tuple with the expected/unexpected messages for entering game mode.
+ :param sv_default_player_spawn_asset: The path to the network player prefab that will be automatically spawned upon entering gamemode. The engine default is "prefabs/player.network.spawnable"
+
+ :return: None
+ """
Report.info("Entering game mode")
if sv_default_player_spawn_asset :
general.set_cvar("sv_defaultPlayerSpawnAsset", sv_default_player_spawn_asset)
@@ -135,20 +161,20 @@ class TestHelper:
multiplayer.PythonEditorFuncs_enter_game_mode()
# make sure the server launcher binary exists
- wait_for_critical_unexpected_line("LaunchEditorServer failed! The ServerLauncher binary is missing!", section_tracer.errors, 0.5)
+ TestHelper.fail_if_log_line_found("MultiplayerEditor", "LaunchEditorServer failed! The ServerLauncher binary is missing!", section_tracer.errors, 0.5)
# make sure the server launcher is running
waiter.wait_for(lambda: process_utils.process_exists("AutomatedTesting.ServerLauncher", ignore_extensions=True), timeout=5.0, exc=AssertionError("AutomatedTesting.ServerLauncher has NOT launched!"), interval=1.0)
- wait_for_critical_expected_line("MultiplayerEditorConnection: Editor-server activation has found and connected to the editor.", section_tracer.prints, 15.0)
+ TestHelper.succeed_if_log_line_found("EditorServer", "MultiplayerEditorConnection: Editor-server activation has found and connected to the editor.", section_tracer.prints, 15.0)
- wait_for_critical_expected_line("Editor is sending the editor-server the level data packet.", section_tracer.prints, 5.0)
+ TestHelper.succeed_if_log_line_found("MultiplayerEditor", "Editor is sending the editor-server the level data packet.", section_tracer.prints, 5.0)
- wait_for_critical_expected_line("Logger: Editor Server completed receiving the editor's level assets, responding to Editor...", section_tracer.prints, 5.0)
+ TestHelper.succeed_if_log_line_found("EditorServer", "Logger: Editor Server completed receiving the editor's level assets, responding to Editor...", section_tracer.prints, 5.0)
- wait_for_critical_expected_line("Editor-server ready. Editor has successfully connected to the editor-server's network simulation.", section_tracer.prints, 5.0)
+ TestHelper.succeed_if_log_line_found("MultiplayerEditorConnection", "Editor-server ready. Editor has successfully connected to the editor-server's network simulation.", section_tracer.prints, 5.0)
- wait_for_critical_unexpected_line(f"MultiplayerSystemComponent: SpawnDefaultPlayerPrefab failed. Missing sv_defaultPlayerSpawnAsset at path '{sv_default_player_spawn_asset.lower()}'.", section_tracer.prints, 0.5)
+ TestHelper.fail_if_log_line_found("EditorServer", f"MultiplayerSystemComponent: SpawnDefaultPlayerPrefab failed. Missing sv_defaultPlayerSpawnAsset at path '{sv_default_player_spawn_asset.lower()}'.", section_tracer.prints, 0.5)
TestHelper.wait_for_condition(lambda : multiplayer.PythonEditorFuncs_is_in_game_mode(), 5.0)
Report.critical_result(msgtuple_success_fail, multiplayer.PythonEditorFuncs_is_in_game_mode())
diff --git a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py
index 8f50d4d36d..8c5f33993d 100644
--- a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py
+++ b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py
@@ -32,3 +32,6 @@ class TestAutomation(TestAutomationBase):
from .tests import Multiplayer_AutoComponent_NetworkInput as test_module
self._run_prefab_test(request, workspace, editor, test_module)
+ def test_Multiplayer_AutoComponent_RPC(self, request, workspace, editor, launcher_platform):
+ from .tests import Multiplayer_AutoComponent_RPC as test_module
+ self._run_prefab_test(request, workspace, editor, test_module)
diff --git a/AutomatedTesting/Gem/PythonTests/Multiplayer/tests/Multiplayer_AutoComponent_RPC.py b/AutomatedTesting/Gem/PythonTests/Multiplayer/tests/Multiplayer_AutoComponent_RPC.py
new file mode 100644
index 0000000000..827826cbcc
--- /dev/null
+++ b/AutomatedTesting/Gem/PythonTests/Multiplayer/tests/Multiplayer_AutoComponent_RPC.py
@@ -0,0 +1,83 @@
+"""
+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
+"""
+
+
+# Test Case Title : Check that the four network RPCs can be sent and received
+
+
+# fmt: off
+class TestSuccessFailTuples():
+ enter_game_mode = ("Entered game mode", "Failed to enter game mode")
+ exit_game_mode = ("Exited game mode", "Couldn't exit game mode")
+ find_network_player = ("Found network player", "Couldn't find network player")
+# fmt: on
+
+
+def Multiplayer_AutoComponent_RPC():
+ r"""
+ Summary:
+ Runs a test to make sure that RPCs can be sent and received via script canvas
+
+ Level Description:
+ - Dynamic
+ 1. Although the level is nearly empty, when the server and editor connect the server will spawn and replicate the player network prefab.
+ a. The player network prefab has a NetworkTestPlayerComponent.AutoComponent and a script canvas attached which sends and receives various RPCs.
+ Print logs occur upon sending and receiving the RPCs; we are testing to make sure the expected events and values are received.
+ - Static
+ 1. NetLevelEntity. This is a networked entity which has a script attached. Used for cross-entity communication. The net-player prefab will send this level entity Server->Authority RPCs
+
+
+ Expected Outcome:
+ We should see editor logs stating that RPCs have been sent and received.
+ However, if the script receives unexpected values for the Process event we will see print logs for bad data as well.
+
+ :return:
+ """
+ import azlmbr.legacy.general as general
+ from editor_python_test_tools.utils import Report
+ from editor_python_test_tools.utils import Tracer
+
+ from editor_python_test_tools.utils import TestHelper as helper
+ from ly_remote_console.remote_console_commands import RemoteConsole as RemoteConsole
+
+ level_name = "AutoComponent_RPC"
+ player_prefab_name = "Player"
+ player_prefab_path = f"levels/multiplayer/{level_name}/{player_prefab_name}.network.spawnable"
+
+ helper.init_idle()
+
+ # 1) Open Level
+ helper.open_level("Multiplayer", level_name)
+
+ with Tracer() as section_tracer:
+ # 2) Enter game mode
+ helper.multiplayer_enter_game_mode(TestSuccessFailTuples.enter_game_mode, player_prefab_path.lower())
+
+ # 3) Make sure the network player was spawned
+ player_id = general.find_game_entity(player_prefab_name)
+ Report.critical_result(TestSuccessFailTuples.find_network_player, player_id.IsValid())
+
+ # 4) Check the editor logs for expected and unexpected log output
+ PLAYERID_RPC_WAIT_TIME_SECONDS = 1.0 # The player id is sent from the server as soon as the player script is spawned. 1 second should be more than enough time to send/receive that RPC.
+ helper.succeed_if_log_line_found('EditorServer', 'Script: AutoComponent_RPC: Sending client PlayerNumber 1', section_tracer.prints, PLAYERID_RPC_WAIT_TIME_SECONDS)
+ helper.succeed_if_log_line_found('Script', "AutoComponent_RPC: I'm Player #1", section_tracer.prints, PLAYERID_RPC_WAIT_TIME_SECONDS)
+
+ # Uncomment once editor game-play mode supports level entities with net-binding
+ #PLAYFX_RPC_WAIT_TIME_SECONDS = 1.1 # The server will send an RPC to play an fx on the client every second.
+ #helper.succeed_if_log_line_found('EditorServer', "Script: AutoComponent_RPC_NetLevelEntity Activated on entity: NetLevelEntity", section_tracer.prints, PLAYFX_RPC_WAIT_TIME_SECONDS)
+ #helper.succeed_if_log_line_found('EditorServer', "Script: AutoComponent_RPC_NetLevelEntity: Authority sending RPC to play some fx.", section_tracer.prints, PLAYFX_RPC_WAIT_TIME_SECONDS)
+ #helper.succeed_if_log_line_found('Script', "AutoComponent_RPC_NetLevelEntity: I'm a client playing some superficial fx.", section_tracer.prints, PLAYFX_RPC_WAIT_TIME_SECONDS)
+
+
+ # Exit game mode
+ helper.exit_game_mode(TestSuccessFailTuples.exit_game_mode)
+
+
+
+if __name__ == "__main__":
+ from editor_python_test_tools.utils import Report
+ Report.start_test(Multiplayer_AutoComponent_RPC)
diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py
index 30ecac9a65..4b23f52006 100755
--- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py
+++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py
@@ -3,8 +3,6 @@ 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
-
-Fixture for clearing out 'MoveOutput' folders from \dev and \dev\PROJECT
"""
# Import builtin libraries
diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py
index 744720323e..42c83c7c25 100755
--- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py
+++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py
@@ -169,17 +169,17 @@ class TestsAssetRelocator_WindowsAndMac(object):
@pytest.mark.test_case_id("C21968388")
@pytest.mark.assetpipeline
- def test_WindowsMacPlatforms_MoveCorruptedSliceFile_MoveSuccess(self, request, workspace, ap_setup_fixture,
+ def test_WindowsMacPlatforms_MoveCorruptedPrefabFile_MoveSuccess(self, request, workspace, ap_setup_fixture,
asset_processor):
"""
Asset with UUID/AssetId reference in non-standard format is
successfully scanned and relocated to the MoveOutput folder.
- This test uses a pre-corrupted .slice file.
+ This test uses a pre-corrupted .prefab file.
Test Steps:
- 1. Create temporary testing environment with a corrupted slice
- 2. Attempt to move the corrupted slice
- 3. Verify that corrupted slice was moved successfully
+ 1. Create temporary testing environment with a corrupted prefab
+ 2. Attempt to move the corrupted prefab
+ 3. Verify that corrupted prefab was moved successfully
"""
env = ap_setup_fixture
@@ -187,7 +187,7 @@ class TestsAssetRelocator_WindowsAndMac(object):
asset_folder = "C21968388"
source_dir, _ = asset_processor.prepare_test_environment(env["tests_dir"], asset_folder)
- filename = "DependencyScannerAsset.slice"
+ filename = "DependencyScannerAsset.prefab"
file_path = os.path.join(source_dir, filename)
dst_rel_path = os.path.join("MoveOutput", filename)
dst_full_path = os.path.join(source_dir, dst_rel_path)
diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C21968388/DependencyScannerAsset.prefab b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C21968388/DependencyScannerAsset.prefab
new file mode 100644
index 0000000000..1ba25b4463
--- /dev/null
+++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C21968388/DependencyScannerAsset.prefab
@@ -0,0 +1,908 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "DependencyScannerAsset",
+ "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_[274004659287]": {
+ "Id": "Entity_[274004659287]",
+ "Name": "DependencyScannerAsset",
+ "Components": {
+ "Component_[10849460799799271301]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 10849460799799271301
+ },
+ "Component_[11098142762746045658]": {
+ "$type": "SelectionComponent",
+ "Id": 11098142762746045658
+ },
+ "Component_[11154538629717040387]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 11154538629717040387,
+ "Child Entity Order": [
+ "Entity_[305822185575]",
+ "Entity_[278299626583]",
+ "Entity_[282594593879]",
+ "Entity_[286889561175]",
+ "Entity_[291184528471]"
+ ]
+ },
+ "Component_[1365196255752273753]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 1365196255752273753
+ },
+ "Component_[280906579560376421]": {
+ "$type": "EditorLockComponent",
+ "Id": 280906579560376421
+ },
+ "Component_[4629965429001113748]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4629965429001113748
+ },
+ "Component_[4876910656129741263]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 4876910656129741263
+ },
+ "Component_[5763306492614623496]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 5763306492614623496,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 7514977506847036117
+ }
+ ]
+ },
+ "Component_[7327709568605458460]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7327709568605458460
+ },
+ "Component_[7514977506847036117]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 7514977506847036117,
+ "Parent Entity": "ContainerEntity"
+ }
+ }
+ },
+ "Entity_[278299626583]": {
+ "Id": "Entity_[278299626583]",
+ "Name": "AssetIDMatch",
+ "Components": {
+ "Component_[10285740519857855186]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10285740519857855186
+ },
+ "Component_[11273731016303624898]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11273731016303624898,
+ "Parent Entity": "Entity_[274004659287]"
+ },
+ "Component_[1136790983026972010]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 1136790983026972010
+ },
+ "Component_[12777313618328131055]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 12777313618328131055
+ },
+ "Component_[13256044902558773795]": {
+ "$type": "EditorLockComponent",
+ "Id": 13256044902558773795
+ },
+ "Component_[15834551022302435776]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15834551022302435776,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11273731016303624898
+ },
+ {
+ "ComponentId": 9671522714018290727,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[16345420368214930095]": {
+ "$type": "SelectionComponent",
+ "Id": 16345420368214930095
+ },
+ "Component_[5309075942188429052]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 5309075942188429052
+ },
+ "Component_[8639731896786645938]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 8639731896786645938
+ },
+ "Component_[9844585173698551415]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9844585173698551415
+ }
+ }
+ },
+ "Entity_[282594593879]": {
+ "Id": "Entity_[282594593879]",
+ "Name": "UUIDMatch",
+ "Components": {
+ "Component_[10379494986254888760]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10379494986254888760
+ },
+ "Component_[10932830014545295552]": {
+ "$type": "SelectionComponent",
+ "Id": 10932830014545295552
+ },
+ "Component_[16077882919902242532]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 16077882919902242532
+ },
+ "Component_[2150375322459274584]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 2150375322459274584
+ },
+ "Component_[2645455411436465820]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 2645455411436465820
+ },
+ "Component_[5422214869037468733]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 5422214869037468733
+ },
+ "Component_[7238126895911071330]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 7238126895911071330,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 8407607000804893064
+ },
+ {
+ "ComponentId": 12952323341649885242,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[7981670269715131988]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7981670269715131988
+ },
+ "Component_[8407607000804893064]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 8407607000804893064,
+ "Parent Entity": "Entity_[274004659287]"
+ },
+ "Component_[8567641786004090803]": {
+ "$type": "EditorLockComponent",
+ "Id": 8567641786004090803
+ }
+ }
+ },
+ "Entity_[286889561175]": {
+ "Id": "Entity_[286889561175]",
+ "Name": "RelativeProductMatch",
+ "Components": {
+ "Component_[10180645282669228972]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 10180645282669228972,
+ "Parent Entity": "Entity_[274004659287]"
+ },
+ "Component_[10200807690182688147]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10200807690182688147
+ },
+ "Component_[11014661873645081316]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 11014661873645081316,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 10180645282669228972
+ },
+ {
+ "ComponentId": 12869852248016369650,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[12869852248016369650]": {
+ "$type": "{77CDE991-EC1A-B7C1-B112-7456ABAC81A1} EditorSpawnerComponent",
+ "Id": 12869852248016369650,
+ "Slice": {
+ "assetId": {
+ "guid": "{29F14025-3BD2-5CA9-A9DE-B8B349268C2F}",
+ "subId": 2
+ },
+ "assetHint": "slices/bullet.dynamicslice"
+ }
+ },
+ "Component_[15136448544716183259]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 15136448544716183259
+ },
+ "Component_[15966001894874626764]": {
+ "$type": "SelectionComponent",
+ "Id": 15966001894874626764
+ },
+ "Component_[16167982631516160155]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 16167982631516160155
+ },
+ "Component_[16672905198052847867]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 16672905198052847867
+ },
+ "Component_[4506946122562404190]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4506946122562404190
+ },
+ "Component_[6836304267269231429]": {
+ "$type": "EditorLockComponent",
+ "Id": 6836304267269231429
+ },
+ "Component_[8756593519140349183]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8756593519140349183
+ }
+ }
+ },
+ "Entity_[291184528471]": {
+ "Id": "Entity_[291184528471]",
+ "Name": "RelativeSourceMatch",
+ "Components": {
+ "Component_[11694027325905361034]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 11694027325905361034
+ },
+ "Component_[13891029613307790064]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13891029613307790064
+ },
+ "Component_[15933511034411930900]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 15933511034411930900,
+ "Parent Entity": "Entity_[274004659287]"
+ },
+ "Component_[17540827492846961803]": {
+ "$type": "EditorLockComponent",
+ "Id": 17540827492846961803
+ },
+ "Component_[2850297705939373458]": {
+ "$type": "SelectionComponent",
+ "Id": 2850297705939373458
+ },
+ "Component_[4809103331004345812]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 4809103331004345812
+ },
+ "Component_[5654779331777839943]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 5654779331777839943,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 15933511034411930900
+ },
+ {
+ "ComponentId": 10284025539900054207,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[6097019179005900386]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 6097019179005900386
+ },
+ "Component_[7748387730313625157]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 7748387730313625157
+ },
+ "Component_[9822265453841229082]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9822265453841229082
+ }
+ }
+ },
+ "Entity_[297232250983]": {
+ "Id": "Entity_[297232250983]",
+ "Name": "1151F14D38A65579888ABE3139882E68:[0]",
+ "Components": {
+ "Component_[11936148741777754959]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 11936148741777754959
+ },
+ "Component_[12610073699988743015]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12610073699988743015,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[1603205169722765279]": {
+ "$type": "EditorLockComponent",
+ "Id": 1603205169722765279
+ },
+ "Component_[17691206348057560715]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 17691206348057560715
+ },
+ "Component_[2711821203680330048]": {
+ "$type": "SelectionComponent",
+ "Id": 2711821203680330048
+ },
+ "Component_[3887480309311474860]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 3887480309311474860
+ },
+ "Component_[5853968883842282450]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 5853968883842282450
+ },
+ "Component_[7679080692843343453]": {
+ "$type": "EditorCommentComponent",
+ "Id": 7679080692843343453,
+ "Configuration": "Asset ID that matches an existing dependency of this asset (am_grass1.mtl)"
+ },
+ "Component_[8024752235278898687]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8024752235278898687
+ },
+ "Component_[8373296084678231042]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8373296084678231042
+ },
+ "Component_[9782967158965587831]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 9782967158965587831,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 12610073699988743015
+ },
+ {
+ "ComponentId": 7679080692843343453,
+ "SortIndex": 1
+ }
+ ]
+ }
+ }
+ },
+ "Entity_[301527218279]": {
+ "Id": "Entity_[301527218279]",
+ "Name": "Slices/bullet.dynamicslice",
+ "Components": {
+ "Component_[15613078542630153866]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15613078542630153866,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 2483032678718995164
+ },
+ {
+ "ComponentId": 9734604379060902193,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[16098942854900817264]": {
+ "$type": "SelectionComponent",
+ "Id": 16098942854900817264
+ },
+ "Component_[16720139961856477500]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 16720139961856477500
+ },
+ "Component_[2483032678718995164]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 2483032678718995164,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[2502984783426127018]": {
+ "$type": "EditorLockComponent",
+ "Id": 2502984783426127018
+ },
+ "Component_[46714013890147210]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 46714013890147210
+ },
+ "Component_[4907474530744780429]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 4907474530744780429
+ },
+ "Component_[5420332829198300813]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 5420332829198300813
+ },
+ "Component_[7683578164681693579]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 7683578164681693579
+ },
+ "Component_[8312115250363172310]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 8312115250363172310
+ },
+ "Component_[9734604379060902193]": {
+ "$type": "EditorCommentComponent",
+ "Id": 9734604379060902193,
+ "Configuration": "Relative product path that matches an existing dependency of this asset"
+ }
+ }
+ },
+ "Entity_[305822185575]": {
+ "Id": "Entity_[305822185575]",
+ "Name": "AssetReferences",
+ "Components": {
+ "Component_[13422135993444528172]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13422135993444528172
+ },
+ "Component_[13988015667379021413]": {
+ "$type": "EditorLockComponent",
+ "Id": 13988015667379021413
+ },
+ "Component_[14885956487876614434]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 14885956487876614434
+ },
+ "Component_[15550715415947731915]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 15550715415947731915
+ },
+ "Component_[2576266145980379805]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 2576266145980379805,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 3176911836967955668
+ },
+ {
+ "ComponentId": 836721549453007197,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[3176911836967955668]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3176911836967955668,
+ "Parent Entity": "Entity_[274004659287]"
+ },
+ "Component_[5613459137294642234]": {
+ "$type": "SelectionComponent",
+ "Id": 5613459137294642234
+ },
+ "Component_[6400873582148097152]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 6400873582148097152
+ },
+ "Component_[684670817803453913]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 684670817803453913,
+ "Child Entity Order": [
+ "Entity_[323002054759]",
+ "Entity_[327297022055]",
+ "Entity_[301527218279]",
+ "Entity_[318707087463]",
+ "Entity_[297232250983]",
+ "Entity_[314412120167]",
+ "Entity_[331591989351]",
+ "Entity_[310117152871]"
+ ]
+ },
+ "Component_[8118206464926826097]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 8118206464926826097
+ },
+ "Component_[836721549453007197]": {
+ "$type": "EditorCommentComponent",
+ "Id": 836721549453007197,
+ "Configuration": "Entity names are used to trigger the missing dependency scanner. Comments are stripped from dynamic slices."
+ }
+ }
+ },
+ "Entity_[310117152871]": {
+ "Id": "Entity_[310117152871]",
+ "Name": "Materials/FakeMaterial.mtl",
+ "Components": {
+ "Component_[10593857511582714674]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 10593857511582714674,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 11797216659359478300
+ },
+ {
+ "ComponentId": 13816702107134233983,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[11797216659359478300]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 11797216659359478300,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[13816702107134233983]": {
+ "$type": "EditorCommentComponent",
+ "Id": 13816702107134233983,
+ "Configuration": "Invalid path that does not match an existing dependency of this asset"
+ },
+ "Component_[14868583012186337705]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 14868583012186337705
+ },
+ "Component_[14965348027145283648]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 14965348027145283648
+ },
+ "Component_[15075774238648121688]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 15075774238648121688
+ },
+ "Component_[16157883709857447266]": {
+ "$type": "EditorLockComponent",
+ "Id": 16157883709857447266
+ },
+ "Component_[17712080510249108208]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 17712080510249108208
+ },
+ "Component_[2247408514677946398]": {
+ "$type": "SelectionComponent",
+ "Id": 2247408514677946398
+ },
+ "Component_[5565369976544134481]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 5565369976544134481
+ },
+ "Component_[6044814215558788086]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 6044814215558788086
+ }
+ }
+ },
+ "Entity_[314412120167]": {
+ "Id": "Entity_[314412120167]",
+ "Name": "88888888-4444-4444-4444-CCCCCCCCCCCC",
+ "Components": {
+ "Component_[10072177500579430176]": {
+ "$type": "EditorLockComponent",
+ "Id": 10072177500579430176
+ },
+ "Component_[10853215476279564671]": {
+ "$type": "EditorCommentComponent",
+ "Id": 10853215476279564671,
+ "Configuration": "UUID that does not exist"
+ },
+ "Component_[13413154971272749631]": {
+ "$type": "SelectionComponent",
+ "Id": 13413154971272749631
+ },
+ "Component_[15316173756367163440]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 15316173756367163440,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 3266728630359207653
+ },
+ {
+ "ComponentId": 10853215476279564671,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[15809307959802829291]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 15809307959802829291
+ },
+ "Component_[17649652752752487081]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 17649652752752487081
+ },
+ "Component_[2130036493438440377]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 2130036493438440377
+ },
+ "Component_[3266728630359207653]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 3266728630359207653,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[5892125564582966187]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 5892125564582966187
+ },
+ "Component_[597602776660257245]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 597602776660257245
+ },
+ "Component_[8238652007701465495]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8238652007701465495
+ }
+ }
+ },
+ "Entity_[318707087463]": {
+ "Id": "Entity_[318707087463]",
+ "Name": "BBA1A5494C73578894BF0692CDA5FC33",
+ "Components": {
+ "Component_[10222455787643359341]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 10222455787643359341
+ },
+ "Component_[11487845392038268864]": {
+ "$type": "SelectionComponent",
+ "Id": 11487845392038268864
+ },
+ "Component_[12135534290310046764]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 12135534290310046764
+ },
+ "Component_[14412623226519978498]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 14412623226519978498
+ },
+ "Component_[14516371382857751872]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 14516371382857751872
+ },
+ "Component_[16011611743122468576]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 16011611743122468576,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 4157328932578509254
+ },
+ {
+ "ComponentId": 8524796860605854850,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[3813931698067937301]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 3813931698067937301
+ },
+ "Component_[4157328932578509254]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 4157328932578509254,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[8524796860605854850]": {
+ "$type": "EditorCommentComponent",
+ "Id": 8524796860605854850,
+ "Configuration": "UUID that matches an existing dependency of this asset (lumbertank_body.cgf)"
+ },
+ "Component_[8660819596448699427]": {
+ "$type": "EditorLockComponent",
+ "Id": 8660819596448699427
+ },
+ "Component_[8768262795169819026]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 8768262795169819026
+ }
+ }
+ },
+ "Entity_[323002054759]": {
+ "Id": "Entity_[323002054759]",
+ "Name": "Materials/am_rockground.mtl",
+ "Components": {
+ "Component_[13459503224133892836]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13459503224133892836
+ },
+ "Component_[1346698328271204385]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 1346698328271204385
+ },
+ "Component_[13662830241397426219]": {
+ "$type": "SelectionComponent",
+ "Id": 13662830241397426219
+ },
+ "Component_[14169735046939083706]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14169735046939083706,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 833157791612452820
+ },
+ {
+ "ComponentId": 3573928838741352115,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[16049700338512950477]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 16049700338512950477
+ },
+ "Component_[16191253524853449302]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 16191253524853449302
+ },
+ "Component_[1737139665005484521]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1737139665005484521
+ },
+ "Component_[17562284119637289685]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 17562284119637289685
+ },
+ "Component_[3573928838741352115]": {
+ "$type": "EditorCommentComponent",
+ "Id": 3573928838741352115,
+ "Configuration": "Relative source path that matches an existing dependency of this asset"
+ },
+ "Component_[485401015869338526]": {
+ "$type": "EditorLockComponent",
+ "Id": 485401015869338526
+ },
+ "Component_[833157791612452820]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 833157791612452820,
+ "Parent Entity": "Entity_[305822185575]"
+ }
+ }
+ },
+ "Entity_[327297022055]": {
+ "Id": "Entity_[327297022055]",
+ "Name": "Config/Game.xml",
+ "Components": {
+ "Component_[11848260632907964142]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 11848260632907964142,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 497869813123895830
+ },
+ {
+ "ComponentId": 5248857300320701553,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[12842864953492512672]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 12842864953492512672
+ },
+ "Component_[16656501539883791157]": {
+ "$type": "EditorLockComponent",
+ "Id": 16656501539883791157
+ },
+ "Component_[17365661125603122123]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 17365661125603122123
+ },
+ "Component_[2967487135389707052]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 2967487135389707052
+ },
+ "Component_[3356294263684362888]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3356294263684362888
+ },
+ "Component_[497869813123895830]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 497869813123895830,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[5248857300320701553]": {
+ "$type": "EditorCommentComponent",
+ "Id": 5248857300320701553,
+ "Configuration": "Valid path that does not match an existing dependency of this asset. Should report as a missing dependency"
+ },
+ "Component_[746309483212393367]": {
+ "$type": "SelectionComponent",
+ "Id": 746309483212393367
+ },
+ "Component_[8319831469290771470]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 8319831469290771470
+ },
+ "Component_[9369067377618608622]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 9369067377618608622
+ }
+ }
+ },
+ "Entity_[331591989351]": {
+ "Id": "Entity_[331591989351]",
+ "Name": "1151F14D38A65579888ABE3139882E68:[333]",
+ "Components": {
+ "Component_[104857639379046106]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 104857639379046106,
+ "Parent Entity": "Entity_[305822185575]"
+ },
+ "Component_[1061601983221247493]": {
+ "$type": "EditorLockComponent",
+ "Id": 1061601983221247493
+ },
+ "Component_[11028443253330664986]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 11028443253330664986
+ },
+ "Component_[13806275118632081006]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 13806275118632081006
+ },
+ "Component_[13922573109551604801]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 13922573109551604801
+ },
+ "Component_[17027032709917108335]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 17027032709917108335
+ },
+ "Component_[17030988165269698825]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 17030988165269698825
+ },
+ "Component_[2294579021665535860]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 2294579021665535860
+ },
+ "Component_[5863078697041048226]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 5863078697041048226,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 104857639379046106
+ },
+ {
+ "ComponentId": 9466290982672370664,
+ "SortIndex": 1
+ }
+ ]
+ },
+ "Component_[7608263859116142496]": {
+ "$type": "SelectionComponent",
+ "Id": 7608263859116142496
+ },
+ "Component_[9466290982672370664]": {
+ "$type": "EditorCommentComponent",
+ "Id": 9466290982672370664,
+ "Configuration": "Asset ID that does not exist (am_grass1.mtl UUID, no matching product ID)"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
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/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt
index 3fc4f3db0e..5d0808adb6 100644
--- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt
+++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt
@@ -31,22 +31,6 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS)
Smoke
)
- ly_add_pytest(
- NAME AutomatedTesting::LoadLevelGPU
- TEST_SUITE smoke
- TEST_SERIAL
- TEST_REQUIRES gpu
- PATH ${CMAKE_CURRENT_LIST_DIR}/test_RemoteConsole_GPULoadLevel_Works.py
- TIMEOUT 100
- RUNTIME_DEPENDENCIES
- AZ::AssetProcessor
- AZ::PythonBindingsExample
- AutomatedTesting.GameLauncher
- AutomatedTesting.Assets
- COMPONENT
- Smoke
- )
-
ly_add_pytest(
NAME AutomatedTesting::EditorTestWithGPU
TEST_REQUIRES gpu
diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_GPULoadLevel_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_GPULoadLevel_Works.py
deleted file mode 100644
index 7debcab938..0000000000
--- a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_GPULoadLevel_Works.py
+++ /dev/null
@@ -1,43 +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
-
-
-UI Apps: AutomatedTesting.GameLauncher
-Launch AutomatedTesting.GameLauncher with Simple level
-Test should run in both gpu and non gpu
-"""
-
-import pytest
-import psutil
-
-import ly_test_tools.environment.waiter as waiter
-import editor_python_test_tools.hydra_test_utils as editor_test_utils
-from ly_remote_console.remote_console_commands import RemoteConsole as RemoteConsole
-from ly_remote_console.remote_console_commands import (
- send_command_and_expect_response as send_command_and_expect_response,
-)
-
-
-@pytest.mark.parametrize("launcher_platform", ["windows"])
-@pytest.mark.parametrize("project", ["AutomatedTesting"])
-@pytest.mark.parametrize("level", ["Simple"])
-class TestRemoteConsoleLoadLevelWorks(object):
- @pytest.fixture
- def remote_console_instance(self, request):
- console = RemoteConsole()
-
- def teardown():
- if console.connected:
- console.stop()
-
- request.addfinalizer(teardown)
-
- return console
-
- def test_RemoteConsole_LoadLevel_Works(self, launcher, level, remote_console_instance, launcher_platform):
- expected_lines = ['Level system is loading "Simple"']
-
- editor_test_utils.launch_and_validate_results_launcher(launcher, level, remote_console_instance, expected_lines, null_renderer=False)
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/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.prefab b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.prefab
new file mode 100644
index 0000000000..758cb4fca8
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.prefab
@@ -0,0 +1,747 @@
+{
+ "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_[12685882829720]",
+ "Entity_[31145534614197]"
+ ]
+ },
+ "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": 11050384689878106598
+ }
+ }
+ },
+ "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_[12685882829720]": {
+ "Id": "Entity_[12685882829720]",
+ "Name": "GlobalGameData",
+ "Components": {
+ "Component_[11240656689650225106]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 11240656689650225106
+ },
+ "Component_[13863201640354873385]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 13863201640354873385
+ },
+ "Component_[14671754037021562789]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14671754037021562789
+ },
+ "Component_[14750978061505735417]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 14750978061505735417,
+ "m_name": "GlobalGameData",
+ "m_assetHolder": {
+ "m_asset": {
+ "assetId": {
+ "guid": "{B16589A0-EA01-56BC-8141-91A3967FB95F}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptcanvas"
+ }
+ },
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "assetId": {
+ "guid": "{B16589A0-EA01-56BC-8141-91A3967FB95F}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptcanvas"
+ }
+ }
+ },
+ "Component_[16436925042043744033]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 16436925042043744033,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 0.0,
+ 0.10000038146972656,
+ 4.005393981933594
+ ]
+ }
+ },
+ "Component_[16974524495698916088]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 16974524495698916088
+ },
+ "Component_[2753700837834389204]": {
+ "$type": "EditorLockComponent",
+ "Id": 2753700837834389204
+ },
+ "Component_[3766473509503096065]": {
+ "$type": "SelectionComponent",
+ "Id": 3766473509503096065
+ },
+ "Component_[4025955184206569130]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 4025955184206569130
+ },
+ "Component_[7909743395732791573]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 7909743395732791573
+ },
+ "Component_[9550161640684119498]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9550161640684119498
+ }
+ }
+ },
+ "Entity_[31145534614197]": {
+ "Id": "Entity_[31145534614197]",
+ "Name": "NetLevelEntity",
+ "Components": {
+ "Component_[12132849363414901338]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 12132849363414901338
+ },
+ "Component_[12302672911455629152]": {
+ "$type": "SelectionComponent",
+ "Id": 12302672911455629152
+ },
+ "Component_[14169903623243423134]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 14169903623243423134
+ },
+ "Component_[14607413934411389854]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 14607413934411389854
+ },
+ "Component_[15396284312416541768]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 15396284312416541768,
+ "m_template": {
+ "$type": "Multiplayer::LocalPredictionPlayerInputComponent"
+ }
+ },
+ "Component_[15494977028055234270]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 15494977028055234270
+ },
+ "Component_[16325088972532345964]": {
+ "$type": "EditorLockComponent",
+ "Id": 16325088972532345964
+ },
+ "Component_[1986030426392465743]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 1986030426392465743
+ },
+ "Component_[4591476848838823508]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 4591476848838823508,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{80FA8BAF-4A5B-5937-9679-2E592E841A3A}",
+ "subId": 275306041
+ },
+ "assetHint": "assets/physics/collider_pxmeshautoassigned/spherebot/r0-b_body.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[7256163899440301540]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 7256163899440301540,
+ "m_name": "AutoComponent_RPC_NetLevelEntity",
+ "m_assetHolder": {
+ "m_asset": {
+ "assetId": {
+ "guid": "{1D517006-AC01-5ECA-AE66-0E007871F0CD}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/autocomponent_rpc_netlevelentity.scriptcanvas"
+ }
+ },
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "assetId": {
+ "guid": "{1D517006-AC01-5ECA-AE66-0E007871F0CD}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/autocomponent_rpc_netlevelentity.scriptcanvas"
+ }
+ }
+ },
+ "Component_[731336627222243355]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 731336627222243355,
+ "Parent Entity": "Entity_[1146574390643]",
+ "Transform Data": {
+ "Translate": [
+ 2.561863899230957,
+ -1.038161277770996,
+ 0.1487259864807129
+ ]
+ }
+ },
+ "Component_[8012379125499217348]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 8012379125499217348
+ },
+ "Component_[8122568562140740597]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 8122568562140740597,
+ "m_template": {
+ "$type": "Multiplayer::NetworkTransformComponent"
+ }
+ },
+ "Component_[8805228647591404845]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 8805228647591404845,
+ "m_template": {
+ "$type": "NetBindComponent"
+ }
+ },
+ "Component_[9816897251206708579]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 9816897251206708579,
+ "m_template": {
+ "$type": "AutomatedTesting::NetworkTestPlayerComponent"
+ }
+ },
+ "Component_[9880860858035405475]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 9880860858035405475
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.scriptcanvas b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.scriptcanvas
new file mode 100644
index 0000000000..c1c77b14fe
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC.scriptcanvas
@@ -0,0 +1,5019 @@
+{
+ "Type": "JsonSerialization",
+ "Version": 1,
+ "ClassName": "ScriptCanvasData",
+ "ClassData": {
+ "m_scriptCanvas": {
+ "Id": {
+ "id": 2816238339133127497
+ },
+ "Name": "AutoComponent_RPC",
+ "Components": {
+ "Component_[6790521910463264404]": {
+ "$type": "EditorGraphVariableManagerComponent",
+ "Id": 6790521910463264404,
+ "m_variableData": {
+ "m_nameVariableMap": [
+ {
+ "Key": {
+ "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
+ },
+ "Value": {
+ "Datum": {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0
+ },
+ "VariableId": {
+ "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
+ },
+ "VariableName": "PlayerNumber"
+ }
+ }
+ ]
+ }
+ },
+ "Component_[9755768666831861951]": {
+ "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
+ "Id": 9755768666831861951,
+ "m_graphData": {
+ "m_nodes": [
+ {
+ "Id": {
+ "id": 8706984967056
+ },
+ "Name": "SC-EventNode(AuthorityToAutonomous_PlayerNumber Notify Event)",
+ "Components": {
+ "Component_[10688723972761024546]": {
+ "$type": "AzEventHandler",
+ "Id": 10688723972761024546,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{46E6B649-CAA4-4318-960D-5E4854E21BB2}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "ConnectionLimitContract",
+ "limit": 1
+ },
+ {
+ "$type": "RestrictedNodeContract",
+ "m_nodeId": {
+ "id": 8719869868944
+ }
+ }
+ ],
+ "slotName": "Connect",
+ "toolTip": "Connect the AZ Event to this AZ Event Handler.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{221AFED2-BD9E-4CFF-8EC7-75ABA019134D}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Disconnect",
+ "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{D139A8D2-F57B-4EBF-B7F8-1D65C2D97C25}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Connected",
+ "toolTip": "Signaled when a connection has taken place.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{3F47A140-182E-4B32-AE14-467555A6640A}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Disconnected",
+ "toolTip": "Signaled when this event handler is disconnected.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{586BE222-2DEA-4E08-968F-07CA4EB96C54}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "OnEvent",
+ "toolTip": "Triggered when the AZ Event invokes Signal() function.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ },
+ {
+ "id": {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "player_number",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "ConnectionLimitContract",
+ "limit": 1
+ },
+ {
+ "$type": "RestrictedNodeContract",
+ "m_nodeId": {
+ "id": 8719869868944
+ }
+ }
+ ],
+ "slotName": "AuthorityToAutonomous_PlayerNumber Notify Event",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 4,
+ "m_azType": "{DB613438-34F0-5B2E-A413-77424F4254CD}"
+ },
+ "isNullPointer": true,
+ "label": "AuthorityToAutonomous_PlayerNumber Notify Event"
+ }
+ ],
+ "m_azEventEntry": {
+ "m_eventName": "AuthorityToAutonomous_PlayerNumber Notify Event",
+ "m_parameterSlotIds": [
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ }
+ ],
+ "m_parameterNames": [
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ },
+ {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ }
+ ],
+ "m_eventSlotId": {
+ "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8724164836240
+ },
+ "Name": "SC-Node(IsNetEntityRoleAuthority)",
+ "Components": {
+ "Component_[11076422520044215441]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 11076422520044215441,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{4EAB8D16-C0B4-44E1-885D-8E6754CD1A55}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "EntityId: 0",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{B6C4BE5E-CDE4-4EC7-98D0-A019CD80041C}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{1071F455-D5A0-4C7A-AF91-648A0F197885}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{BA87B4ED-9A52-4A0D-8920-CD0ED4E839EA}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Is Role Authority",
+ "DisplayDataType": {
+ "m_type": 0
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "Entity Id"
+ }
+ ],
+ "methodType": 2,
+ "methodName": "IsNetEntityRoleAuthority",
+ "className": "NetBindComponent",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{4EAB8D16-C0B4-44E1-885D-8E6754CD1A55}"
+ }
+ ],
+ "prettyClassName": "NetBindComponent"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8737049738128
+ },
+ "Name": "SC-Node(Print)",
+ "Components": {
+ "Component_[15185116749844245504]": {
+ "$type": "Print",
+ "Id": 15185116749844245504,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{F3ED8C08-D751-492A-A39A-7B7734727A5A}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Value",
+ "toolTip": "Value which replaces instances of {Value} in the resulting string.",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "DisplayGroup": {
+ "Value": 1015031923
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
+ }
+ },
+ {
+ "id": {
+ "m_id": "{5A4FB037-120E-4BF8-A170-D827E5DC161B}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0,
+ "label": "Value"
+ }
+ ],
+ "m_format": "AutoComponent_RPC: Sending client PlayerNumber {Value}\n",
+ "m_numericPrecision": 0,
+ "m_arrayBindingMap": [
+ {
+ "Key": 1,
+ "Value": {
+ "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
+ }
+ }
+ ],
+ "m_unresolvedString": [
+ "AutoComponent_RPC: Sending client PlayerNumber ",
+ {},
+ "\n"
+ ],
+ "m_formatSlotMap": {
+ "Value": {
+ "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8719869868944
+ },
+ "Name": "SC-Node(GetAuthorityToAutonomous_PlayerNumberEventByEntityId)",
+ "Components": {
+ "Component_[1841271567102345236]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 1841271567102345236,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{B556F66D-84DB-4118-8AFE-B3D88D6D75CA}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "EntityId: 0",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{211BD78B-E01E-44F8-B44E-2FD988047BE9}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{1A6BCB27-F99F-4B6B-89CC-F2BE2A698331}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{7262E6CD-BADF-4DD0-8FCE-3A02C3F31CC8}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Event",
+ "DisplayDataType": {
+ "m_type": 4,
+ "m_azType": "{DB613438-34F0-5B2E-A413-77424F4254CD}"
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "EntityId: 0"
+ }
+ ],
+ "methodType": 2,
+ "methodName": "GetAuthorityToAutonomous_PlayerNumberEventByEntityId",
+ "className": "NetworkTestPlayerComponent",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{B556F66D-84DB-4118-8AFE-B3D88D6D75CA}"
+ }
+ ],
+ "prettyClassName": "NetworkTestPlayerComponent"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8711279934352
+ },
+ "Name": "SendScriptEvent",
+ "Components": {
+ "Component_[5751772243856660980]": {
+ "$type": "SendScriptEvent",
+ "Id": 5751772243856660980,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{2FF1A0A1-59C6-4DCF-AE1D-296BD5964D4E}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Fires the specified ScriptEvent when signaled",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{F2955681-A901-432D-99A3-53818F46CDE7}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "m_version": 1,
+ "m_scriptEventAssetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "m_asset": {
+ "assetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptevents"
+ },
+ "m_busId": {
+ "Value": 1375178404
+ },
+ "m_eventId": {
+ "Value": 2930121176
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8749934640016
+ },
+ "Name": "SendScriptEvent",
+ "Components": {
+ "Component_[6456267108920901297]": {
+ "$type": "SendScriptEvent",
+ "Id": 6456267108920901297,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{23DBACD8-7784-4E18-A51C-258B25DF4C19}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Fires the specified ScriptEvent when signaled",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{19C850D7-7F1E-4D41-AFD9-5A4FA03D54F0}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{B6CA4982-245A-45F1-8AA6-3295F49DC071}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Number",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
+ }
+ }
+ ],
+ "m_version": 1,
+ "m_eventSlotMapping": {
+ "{C7E99974-D1C0-4108-B731-120AF000060C}": {
+ "m_id": "{B6CA4982-245A-45F1-8AA6-3295F49DC071}"
+ }
+ },
+ "m_scriptEventAssetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "m_asset": {
+ "assetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptevents"
+ },
+ "m_busId": {
+ "Value": 1375178404
+ },
+ "m_eventId": {
+ "Value": 242067946
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8732754770832
+ },
+ "Name": "SC-Node(Print)",
+ "Components": {
+ "Component_[6838720237293185886]": {
+ "$type": "Print",
+ "Id": 6838720237293185886,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{D206E5BC-3746-4A18-80C7-DBD335FD05FE}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Value",
+ "toolTip": "Value which replaces instances of {Value} in the resulting string.",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "DisplayGroup": {
+ "Value": 1015031923
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{A4555039-973F-43F6-BC9D-CCC0C9B34252}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0,
+ "label": "Value"
+ }
+ ],
+ "m_format": "AutoComponent_RPC: I'm Player #{Value}\n",
+ "m_numericPrecision": 0,
+ "m_arrayBindingMap": [
+ {
+ "Key": 1,
+ "Value": {
+ "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
+ }
+ }
+ ],
+ "m_unresolvedString": [
+ "AutoComponent_RPC: I'm Player #",
+ {},
+ "\n"
+ ],
+ "m_formatSlotMap": {
+ "Value": {
+ "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8715574901648
+ },
+ "Name": "SC-Node(TimeDelayNodeableNode)",
+ "Components": {
+ "Component_[8216689437045635826]": {
+ "$type": "TimeDelayNodeableNode",
+ "Id": 8216689437045635826,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{5809EA65-214B-43A9-8674-B89E9ADF1AE6}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Delay",
+ "toolTip": "The amount of time to delay before the Done is signalled.",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{AC3B9B74-5A7A-4AC9-89AA-B255879D6F63}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Done",
+ "toolTip": "Signaled after waiting for the specified amount of times.",
+ "DisplayGroup": {
+ "Value": 271442091
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 1.0,
+ "label": "Delay"
+ }
+ ],
+ "nodeable": {
+ "m_timeUnits": 2
+ },
+ "slotExecutionMap": {
+ "ins": [
+ {
+ "_slotId": {
+ "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
+ },
+ "_inputs": [
+ {
+ "_slotId": {
+ "m_id": "{5809EA65-214B-43A9-8674-B89E9ADF1AE6}"
+ }
+ }
+ ],
+ "_outs": [
+ {
+ "_slotId": {
+ "m_id": "{AC3B9B74-5A7A-4AC9-89AA-B255879D6F63}"
+ },
+ "_name": "On Start",
+ "_interfaceSourceId": "{C071AF8D-5D00-0000-E074-ECBC15020000}"
+ }
+ ],
+ "_interfaceSourceId": "{C3B60A69-2ADF-0000-4062-ABA615020000}"
+ }
+ ],
+ "latents": [
+ {
+ "_slotId": {
+ "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
+ },
+ "_name": "Done",
+ "_interfaceSourceId": "{C3B60A69-2ADF-0000-4062-ABA615020000}"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8741344705424
+ },
+ "Name": "SC-Node(AuthorityToAutonomous_PlayerNumberByEntityId)",
+ "Components": {
+ "Component_[8243210565080727934]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 8243210565080727934,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{D8767DB8-4BD8-4907-A3A4-BE0AE4F1A774}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Source",
+ "toolTip": "The Source containing the NetworkTestPlayerComponentController",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{2B948544-DD45-4DE1-A9FC-7AFBE1CAB202}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "player_number",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
+ }
+ },
+ {
+ "id": {
+ "m_id": "{1FDB4A9A-D46A-49E8-B734-475230EB7C06}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{964EAD23-8DF5-47A9-BF07-1E5C7CD0CC6C}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "Source"
+ },
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0,
+ "label": "player_number"
+ }
+ ],
+ "methodType": 2,
+ "methodName": "AuthorityToAutonomous_PlayerNumberByEntityId",
+ "className": "NetworkTestPlayerComponent",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{D8767DB8-4BD8-4907-A3A4-BE0AE4F1A774}"
+ },
+ {
+ "m_id": "{2B948544-DD45-4DE1-A9FC-7AFBE1CAB202}"
+ }
+ ],
+ "prettyClassName": "NetworkTestPlayerComponent"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8745639672720
+ },
+ "Name": "SC-Node(Start)",
+ "Components": {
+ "Component_[8447409406288787781]": {
+ "$type": "Start",
+ "Id": 8447409406288787781,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "toolTip": "Signaled when the entity that owns this graph is fully activated.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8728459803536
+ },
+ "Name": "SC-Node(Gate)",
+ "Components": {
+ "Component_[8679383768392231909]": {
+ "$type": "Gate",
+ "Id": 8679383768392231909,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{3E89B67B-1EF2-4DAB-8028-59A97527F3DF}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Condition",
+ "toolTip": "If true the node will signal the Output and proceed execution",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{8AE7F430-C4A9-444E-B42A-BDDFE96C387A}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{78C92586-C0E1-449F-8EB2-B1CE3BFC8AE7}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "True",
+ "toolTip": "Signaled if the condition provided evaluates to true.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{47D87C86-2D61-46D3-A0FC-138F84FD352B}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "False",
+ "toolTip": "Signaled if the condition provided evaluates to false.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 0
+ },
+ "isNullPointer": false,
+ "$type": "bool",
+ "value": false,
+ "label": "Condition"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "m_connections": [
+ {
+ "Id": {
+ "id": 8754229607312
+ },
+ "Name": "srcEndpoint=(IsNetEntityRoleAuthority: Out), destEndpoint=(If: In)",
+ "Components": {
+ "Component_[3645153988172561571]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 3645153988172561571,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8724164836240
+ },
+ "slotId": {
+ "m_id": "{1071F455-D5A0-4C7A-AF91-648A0F197885}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8728459803536
+ },
+ "slotId": {
+ "m_id": "{8AE7F430-C4A9-444E-B42A-BDDFE96C387A}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8758524574608
+ },
+ "Name": "srcEndpoint=(IsNetEntityRoleAuthority: Is Role Authority), destEndpoint=(If: Condition)",
+ "Components": {
+ "Component_[17942926291787646743]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 17942926291787646743,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8724164836240
+ },
+ "slotId": {
+ "m_id": "{BA87B4ED-9A52-4A0D-8920-CD0ED4E839EA}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8728459803536
+ },
+ "slotId": {
+ "m_id": "{3E89B67B-1EF2-4DAB-8028-59A97527F3DF}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8762819541904
+ },
+ "Name": "srcEndpoint=(If: True), destEndpoint=(Send Script Event: In)",
+ "Components": {
+ "Component_[3298020356088639785]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 3298020356088639785,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8728459803536
+ },
+ "slotId": {
+ "m_id": "{78C92586-C0E1-449F-8EB2-B1CE3BFC8AE7}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8711279934352
+ },
+ "slotId": {
+ "m_id": "{2FF1A0A1-59C6-4DCF-AE1D-296BD5964D4E}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8767114509200
+ },
+ "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Send Script Event: In)",
+ "Components": {
+ "Component_[5482500452520221078]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 5482500452520221078,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8711279934352
+ },
+ "slotId": {
+ "m_id": "{F2955681-A901-432D-99A3-53818F46CDE7}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8749934640016
+ },
+ "slotId": {
+ "m_id": "{23DBACD8-7784-4E18-A51C-258B25DF4C19}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8771409476496
+ },
+ "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(AuthorityToAutonomous_PlayerNumberByEntityId: In)",
+ "Components": {
+ "Component_[16156808606878296902]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 16156808606878296902,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8749934640016
+ },
+ "slotId": {
+ "m_id": "{19C850D7-7F1E-4D41-AFD9-5A4FA03D54F0}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8741344705424
+ },
+ "slotId": {
+ "m_id": "{1FDB4A9A-D46A-49E8-B734-475230EB7C06}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8775704443792
+ },
+ "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumberByEntityId: Out), destEndpoint=(Print: In)",
+ "Components": {
+ "Component_[17367899649716276273]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 17367899649716276273,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8741344705424
+ },
+ "slotId": {
+ "m_id": "{964EAD23-8DF5-47A9-BF07-1E5C7CD0CC6C}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8737049738128
+ },
+ "slotId": {
+ "m_id": "{F3ED8C08-D751-492A-A39A-7B7734727A5A}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8779999411088
+ },
+ "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(TimeDelay: Start)",
+ "Components": {
+ "Component_[13463448697016307967]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 13463448697016307967,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8745639672720
+ },
+ "slotId": {
+ "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8715574901648
+ },
+ "slotId": {
+ "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8784294378384
+ },
+ "Name": "srcEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: Event), destEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: AuthorityToAutonomous_PlayerNumber Notify Event)",
+ "Components": {
+ "Component_[9477060643694737434]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 9477060643694737434,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8719869868944
+ },
+ "slotId": {
+ "m_id": "{7262E6CD-BADF-4DD0-8FCE-3A02C3F31CC8}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8706984967056
+ },
+ "slotId": {
+ "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8788589345680
+ },
+ "Name": "srcEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: Out), destEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: Connect)",
+ "Components": {
+ "Component_[16543380658701699472]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 16543380658701699472,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8719869868944
+ },
+ "slotId": {
+ "m_id": "{1A6BCB27-F99F-4B6B-89CC-F2BE2A698331}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8706984967056
+ },
+ "slotId": {
+ "m_id": "{46E6B649-CAA4-4318-960D-5E4854E21BB2}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8792884312976
+ },
+ "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: player_number), destEndpoint=(Print: Value)",
+ "Components": {
+ "Component_[864863482692400383]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 864863482692400383,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8706984967056
+ },
+ "slotId": {
+ "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8732754770832
+ },
+ "slotId": {
+ "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8797179280272
+ },
+ "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: OnEvent), destEndpoint=(Print: In)",
+ "Components": {
+ "Component_[2451057837093425972]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 2451057837093425972,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8706984967056
+ },
+ "slotId": {
+ "m_id": "{586BE222-2DEA-4E08-968F-07CA4EB96C54}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8732754770832
+ },
+ "slotId": {
+ "m_id": "{D206E5BC-3746-4A18-80C7-DBD335FD05FE}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8801474247568
+ },
+ "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: In)",
+ "Components": {
+ "Component_[12180981889720748145]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 12180981889720748145,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8745639672720
+ },
+ "slotId": {
+ "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8719869868944
+ },
+ "slotId": {
+ "m_id": "{211BD78B-E01E-44F8-B44E-2FD988047BE9}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8805769214864
+ },
+ "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(IsNetEntityRoleAuthority: In)",
+ "Components": {
+ "Component_[5772191552099194657]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 5772191552099194657,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8715574901648
+ },
+ "slotId": {
+ "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8724164836240
+ },
+ "slotId": {
+ "m_id": "{B6C4BE5E-CDE4-4EC7-98D0-A019CD80041C}"
+ }
+ }
+ }
+ }
+ }
+ ],
+ "m_scriptEventAssets": [
+ [
+ {
+ "id": 8749934640016
+ },
+ {}
+ ],
+ [
+ {
+ "id": 8711279934352
+ },
+ {}
+ ]
+ ]
+ },
+ "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
+ "versionData": {
+ "_grammarVersion": 1,
+ "_runtimeVersion": 1,
+ "_fileVersion": 1
+ },
+ "m_variableCounter": 1,
+ "GraphCanvasData": [
+ {
+ "Key": {
+ "id": 8706984967056
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "HandlerNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 820.0,
+ 620.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".azeventhandler"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{F112D217-FAC8-4577-B67A-DFDF47842F7D}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8711279934352
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 1240.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{13BD3C1C-EDBB-419E-8465-495935414A1A}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8715574901648
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "TimeNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 200.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{5DF902FE-B0C4-4563-B2BA-17996B24E211}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8719869868944
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 380.0,
+ 620.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{BBBE60FC-0215-4A5A-BEBE-4FC869E5EECE}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8724164836240
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 500.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{348E780E-3A4E-47C7-ACF5-C7B2CB387517}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8728459803536
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "LogicNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 940.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{53C8DAF1-FFF3-4AF8-A7FB-BC0B4E492B37}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8732754770832
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "StringNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 1440.0,
+ 620.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{74ED5AE1-A269-46D4-B968-FEDF513C9CF1}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8737049738128
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "StringNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 2280.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{B91C0E41-E6B5-46DE-885F-6BC6CFB2E813}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8741344705424
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 1840.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{59FFF3C1-2D7B-47EA-AE35-ED15DCB95CC8}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8745639672720
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "TimeNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 40.0,
+ 280.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{B4CB62D9-9965-42E2-81FF-BDADDBD14CBE}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8749934640016
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 1540.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{FD844BFD-72DA-44BA-B92A-AFDB58263B91}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 2816238339133127497
+ },
+ "Value": {
+ "ComponentData": {
+ "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
+ "$type": "SceneComponentSaveData",
+ "ViewParams": {
+ "AnchorX": 260.0,
+ "AnchorY": 479.0
+ }
+ }
+ }
+ }
+ }
+ ],
+ "StatisticsHelper": {
+ "InstanceCounter": [
+ {
+ "Key": 4199610336680704683,
+ "Value": 1
+ },
+ {
+ "Key": 4847610523576971761,
+ "Value": 1
+ },
+ {
+ "Key": 6462358712820489356,
+ "Value": 1
+ },
+ {
+ "Key": 7760188923571293852,
+ "Value": 1
+ },
+ {
+ "Key": 8065262779685207188,
+ "Value": 1
+ },
+ {
+ "Key": 8452971738487658154,
+ "Value": 1
+ },
+ {
+ "Key": 10684225535275896474,
+ "Value": 2
+ },
+ {
+ "Key": 12248403816200817622,
+ "Value": 1
+ },
+ {
+ "Key": 12248403882232298424,
+ "Value": 1
+ },
+ {
+ "Key": 16232169425081397848,
+ "Value": 1
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC_NetLevelEntity.scriptcanvas b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC_NetLevelEntity.scriptcanvas
new file mode 100644
index 0000000000..3869dfdfcb
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/AutoComponent_RPC_NetLevelEntity.scriptcanvas
@@ -0,0 +1,1946 @@
+{
+ "Type": "JsonSerialization",
+ "Version": 1,
+ "ClassName": "ScriptCanvasData",
+ "ClassData": {
+ "m_scriptCanvas": {
+ "Id": {
+ "id": 1685762441320719908
+ },
+ "Name": "AutoComponent_RPC_NetLevelEntity",
+ "Components": {
+ "Component_[2936040539888065977]": {
+ "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
+ "Id": 2936040539888065977,
+ "m_graphData": {
+ "m_nodes": [
+ {
+ "Id": {
+ "id": 56986727032248
+ },
+ "Name": "SC-Node(RepeaterNodeableNode)",
+ "Components": {
+ "Component_[11069913642528675281]": {
+ "$type": "RepeaterNodeableNode",
+ "Id": 11069913642528675281,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{07267CBA-B377-4B57-8A04-E322F8BFC07F}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{A9CCCCF4-BC3E-44B8-B2BB-2EEFBF475F82}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Repetitions",
+ "toolTip": "How many times to repeat.",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{E490B225-8A15-4CA1-9F25-6D8F9F8E398F}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Interval",
+ "toolTip": "The Interval between repetitions. If zero, all repititions execute immediately, before On Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{92077333-D7F5-4E54-80FD-0363876B5510}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{91CF89F3-906C-4860-B84E-9BD7D6842CA8}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Complete",
+ "toolTip": "Signaled upon node exit",
+ "DisplayGroup": {
+ "Value": 1114099747
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ },
+ {
+ "id": {
+ "m_id": "{C1CCBA7B-A13B-4FCE-99ED-8FD1A8F72869}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Action",
+ "toolTip": "Signaled every repetition",
+ "DisplayGroup": {
+ "Value": 1204587666
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 99.0,
+ "label": "Repetitions"
+ },
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 1.0,
+ "label": "Interval"
+ }
+ ],
+ "nodeable": {
+ "m_timeUnits": 2
+ },
+ "slotExecutionMap": {
+ "ins": [
+ {
+ "_slotId": {
+ "m_id": "{07267CBA-B377-4B57-8A04-E322F8BFC07F}"
+ },
+ "_inputs": [
+ {
+ "_slotId": {
+ "m_id": "{A9CCCCF4-BC3E-44B8-B2BB-2EEFBF475F82}"
+ }
+ },
+ {
+ "_slotId": {
+ "m_id": "{E490B225-8A15-4CA1-9F25-6D8F9F8E398F}"
+ }
+ }
+ ],
+ "_outs": [
+ {
+ "_slotId": {
+ "m_id": "{92077333-D7F5-4E54-80FD-0363876B5510}"
+ },
+ "_name": "On Start",
+ "_interfaceSourceId": "{60330D5B-FB7F-0000-8039-14DD7C020000}"
+ }
+ ],
+ "_interfaceSourceId": "{E1D0AF7E-837B-0000-0033-BA267C020000}"
+ }
+ ],
+ "latents": [
+ {
+ "_slotId": {
+ "m_id": "{91CF89F3-906C-4860-B84E-9BD7D6842CA8}"
+ },
+ "_name": "Complete",
+ "_interfaceSourceId": "{E1D0AF7E-837B-0000-0033-BA267C020000}"
+ },
+ {
+ "_slotId": {
+ "m_id": "{C1CCBA7B-A13B-4FCE-99ED-8FD1A8F72869}"
+ },
+ "_name": "Action",
+ "_interfaceSourceId": "{E1D0AF7E-837B-0000-0033-BA267C020000}"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 57003906901432
+ },
+ "Name": "SC-Node(DrawTextOnEntity)",
+ "Components": {
+ "Component_[14125366736968050670]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 14125366736968050670,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{6BD7BF07-D1B6-4CC2-A861-C4334AA3A025}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "EntityId: 0",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{AB0304C4-CD52-4351-A009-CD959CDA6E2B}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "String: 1",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{EB877F87-C03A-4692-ABBB-2317E98E8C6F}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Color: 2",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{E2D11762-F47C-4341-806A-DBB4FBAEC235}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Number: 3",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{1673B8A0-D4EC-4CC7-8F80-0419BB5560EB}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{5F720C70-EA4F-4883-B5BE-4278E75370E8}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "Entity Id"
+ },
+ {
+ "scriptCanvasType": {
+ "m_type": 5
+ },
+ "isNullPointer": false,
+ "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
+ "value": "AutoComponent_RPC_NetLevelEntity: I'm a client playing some superficial fx",
+ "label": "Color"
+ },
+ {
+ "scriptCanvasType": {
+ "m_type": 12
+ },
+ "isNullPointer": false,
+ "$type": "Color",
+ "value": [
+ 1.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "label": "Color: 2"
+ },
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 2.0,
+ "label": "Number: 3"
+ }
+ ],
+ "methodType": 0,
+ "methodName": "DrawTextOnEntity",
+ "className": "DebugDrawRequestBus",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{6BD7BF07-D1B6-4CC2-A861-C4334AA3A025}"
+ },
+ {
+ "m_id": "{AB0304C4-CD52-4351-A009-CD959CDA6E2B}"
+ },
+ {
+ "m_id": "{EB877F87-C03A-4692-ABBB-2317E98E8C6F}"
+ },
+ {
+ "m_id": "{E2D11762-F47C-4341-806A-DBB4FBAEC235}"
+ }
+ ],
+ "prettyClassName": "DebugDrawRequestBus"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 56999611934136
+ },
+ "Name": "SC-Node(Print)",
+ "Components": {
+ "Component_[15472692142045278273]": {
+ "$type": "Print",
+ "Id": 15472692142045278273,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{2F11CF04-DC4B-4881-8D74-AB0E51B4A278}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{6CE4DAB2-4D8E-461E-B9B2-34338EBBAD97}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "m_format": "AutoComponent_RPC_NetLevelEntity: Authority sending RPC to play some fx.\n",
+ "m_unresolvedString": [
+ "AutoComponent_RPC_NetLevelEntity: Authority sending RPC to play some fx.\n"
+ ]
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 56995316966840
+ },
+ "Name": "SC-Node(Print)",
+ "Components": {
+ "Component_[15717135232290736332]": {
+ "$type": "Print",
+ "Id": 15717135232290736332,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{7CAD6E31-6218-4326-8FFB-0523F545E250}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{C38BB068-BF1B-4734-BFFA-10B258870349}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "m_format": "AutoComponent_RPC_NetLevelEntity: I'm a client playing some fx.\n",
+ "m_unresolvedString": [
+ "AutoComponent_RPC_NetLevelEntity: I'm a client playing some fx.\n"
+ ]
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8318619017825
+ },
+ "Name": "SC-EventNode(AuthorityToClientNoParams_PlayFx Notify Event)",
+ "Components": {
+ "Component_[15772128920819427182]": {
+ "$type": "AzEventHandler",
+ "Id": 15772128920819427182,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{2A42C379-8E3B-46EF-BC63-C1D5395CB583}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "ConnectionLimitContract",
+ "limit": 1
+ },
+ {
+ "$type": "RestrictedNodeContract",
+ "m_nodeId": {
+ "id": 7820402811489
+ }
+ }
+ ],
+ "slotName": "Connect",
+ "toolTip": "Connect the AZ Event to this AZ Event Handler.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{3DB9829E-6088-49B9-A56D-4D1884C679BD}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Disconnect",
+ "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{9AC3CF57-B648-4B43-8FCA-8576B6EA350B}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Connected",
+ "toolTip": "Signaled when a connection has taken place.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{5FB8D529-6FC6-4543-99B5-5B147EBD7BE6}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Disconnected",
+ "toolTip": "Signaled when this event handler is disconnected.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{0481BBFE-D31E-421F-A6C2-8A7AF3012545}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "OnEvent",
+ "toolTip": "Triggered when the AZ Event invokes Signal() function.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ },
+ {
+ "id": {
+ "m_id": "{5F809F1C-ED4E-4391-9E33-AD3B64561A40}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "ConnectionLimitContract",
+ "limit": 1
+ },
+ {
+ "$type": "RestrictedNodeContract",
+ "m_nodeId": {
+ "id": 7820402811489
+ }
+ }
+ ],
+ "slotName": "AuthorityToClientNoParams_PlayFx Notify Event",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 4,
+ "m_azType": "{F429F985-AF00-529B-8449-16E56694E5F9}"
+ },
+ "isNullPointer": true,
+ "label": "AuthorityToClientNoParams_PlayFx Notify Event"
+ }
+ ],
+ "m_azEventEntry": {
+ "m_eventName": "AuthorityToClientNoParams_PlayFx Notify Event",
+ "m_eventSlotId": {
+ "m_id": "{5F809F1C-ED4E-4391-9E33-AD3B64561A40}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 56991021999544
+ },
+ "Name": "SC-Node(Print)",
+ "Components": {
+ "Component_[15785913678997669879]": {
+ "$type": "Print",
+ "Id": 15785913678997669879,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{8E1B9705-148A-42E4-831E-D7B2877358E3}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "toolTip": "Input signal",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{CEBD2B9C-7DBA-486A-88DB-19F9C406B18E}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Value",
+ "toolTip": "Value which replaces instances of {Value} in the resulting string.",
+ "DisplayDataType": {
+ "m_type": 5
+ },
+ "DisplayGroup": {
+ "Value": 1015031923
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{E9B979F9-D682-4B58-8E88-6102387FE70B}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 5
+ },
+ "isNullPointer": false,
+ "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
+ "value": "",
+ "label": "Value"
+ }
+ ],
+ "m_format": "AutoComponent_RPC_NetLevelEntity Activated on entity: {Value}\n",
+ "m_arrayBindingMap": [
+ {
+ "Key": 1,
+ "Value": {
+ "m_id": "{CEBD2B9C-7DBA-486A-88DB-19F9C406B18E}"
+ }
+ }
+ ],
+ "m_unresolvedString": [
+ "AutoComponent_RPC_NetLevelEntity Activated on entity: ",
+ {},
+ "\n"
+ ],
+ "m_formatSlotMap": {
+ "Value": {
+ "m_id": "{CEBD2B9C-7DBA-486A-88DB-19F9C406B18E}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 57025381737912
+ },
+ "Name": "SC-Node(Start)",
+ "Components": {
+ "Component_[1888047318201703857]": {
+ "$type": "Start",
+ "Id": 1888047318201703857,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{28664064-2483-465A-9BB1-4E1890048CDF}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "toolTip": "Signaled when the entity that owns this graph is fully activated.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8310662318335
+ },
+ "Name": "SC-Node(GetEntityName)",
+ "Components": {
+ "Component_[2232030369305027010]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 2232030369305027010,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{F69C5762-0CAB-4A54-9C81-C99CDB73C834}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "EntityId: 0",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{03554C56-8237-4C19-B9F8-87DEA1AC3ED0}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{6ECBD749-25FE-4813-B34E-EF46BC09E616}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{36D47097-8F0C-4CBD-8DE2-32F4754C569F}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "String",
+ "DisplayDataType": {
+ "m_type": 5
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "Entity Id"
+ }
+ ],
+ "methodType": 0,
+ "methodName": "GetEntityName",
+ "className": "GameEntityContextRequestBus",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{F69C5762-0CAB-4A54-9C81-C99CDB73C834}"
+ }
+ ],
+ "prettyClassName": "GameEntityContextRequestBus"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 8400576252253
+ },
+ "Name": "SC-Node(AuthorityToClientNoParams_PlayFxByEntityId)",
+ "Components": {
+ "Component_[6332803108634970671]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 6332803108634970671,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{87B7266B-D7B1-4CAD-9898-4D7F0274DAB0}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Source",
+ "toolTip": "The Source containing the NetworkTestPlayerComponentController",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{AB0D7C00-A334-449A-AC56-EA3167AB8900}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{A52302D6-9DF9-45C2-960D-19BF90A4A931}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "Source"
+ }
+ ],
+ "methodType": 2,
+ "methodName": "AuthorityToClientNoParams_PlayFxByEntityId",
+ "className": "NetworkTestPlayerComponent",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{87B7266B-D7B1-4CAD-9898-4D7F0274DAB0}"
+ }
+ ],
+ "prettyClassName": "NetworkTestPlayerComponent"
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 57012496836024
+ },
+ "Name": "SC-Node(TimeDelayNodeableNode)",
+ "Components": {
+ "Component_[8951348653904382148]": {
+ "$type": "TimeDelayNodeableNode",
+ "Id": 8951348653904382148,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{EA0DF0AE-2FF7-4670-8D99-7CF863038E68}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{9C6D8500-B49B-4407-B2EB-40B1CD4CE762}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Delay",
+ "toolTip": "The amount of time to delay before the Done is signalled.",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{FE2A3D2F-7AC2-431D-B80C-C363DB475919}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "On Start",
+ "DisplayGroup": {
+ "Value": 2675529103
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{158B30BE-BD39-40AE-A8A8-F0E5694F0180}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Done",
+ "toolTip": "Signaled after waiting for the specified amount of times.",
+ "DisplayGroup": {
+ "Value": 271442091
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 1.0,
+ "label": "Delay"
+ }
+ ],
+ "nodeable": {
+ "m_timeUnits": 2
+ },
+ "slotExecutionMap": {
+ "ins": [
+ {
+ "_slotId": {
+ "m_id": "{EA0DF0AE-2FF7-4670-8D99-7CF863038E68}"
+ },
+ "_inputs": [
+ {
+ "_slotId": {
+ "m_id": "{9C6D8500-B49B-4407-B2EB-40B1CD4CE762}"
+ }
+ }
+ ],
+ "_outs": [
+ {
+ "_slotId": {
+ "m_id": "{FE2A3D2F-7AC2-431D-B80C-C363DB475919}"
+ },
+ "_name": "On Start",
+ "_interfaceSourceId": "{4C400000-7C02-0000-B86E-0FACE0000000}"
+ }
+ ],
+ "_interfaceSourceId": "{24000000-0000-0000-0000-F421FC7F0000}"
+ }
+ ],
+ "latents": [
+ {
+ "_slotId": {
+ "m_id": "{158B30BE-BD39-40AE-A8A8-F0E5694F0180}"
+ },
+ "_name": "Done",
+ "_interfaceSourceId": "{24000000-0000-0000-0000-F421FC7F0000}"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 7820402811489
+ },
+ "Name": "SC-Node(GetAuthorityToClientNoParams_PlayFxEventByEntityId)",
+ "Components": {
+ "Component_[9263945554457190064]": {
+ "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
+ "Id": 9263945554457190064,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{F22A7438-E72F-4757-90D9-99F03C91E10D}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "EntityId: 0",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{510F56FD-6778-4DB8-BDDE-258335431CC6}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{94C2AF04-6BFA-4E5A-9490-C7479A7AF61E}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{9C6DDF96-6BF0-45ED-B15F-2E6C2FF5F886}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Event<>",
+ "DisplayDataType": {
+ "m_type": 4,
+ "m_azType": "{F429F985-AF00-529B-8449-16E56694E5F9}"
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DataType": 1
+ }
+ ],
+ "Datums": [
+ {
+ "scriptCanvasType": {
+ "m_type": 1
+ },
+ "isNullPointer": false,
+ "$type": "EntityId",
+ "value": {
+ "id": 2901262558
+ },
+ "label": "EntityId: 0"
+ }
+ ],
+ "methodType": 2,
+ "methodName": "GetAuthorityToClientNoParams_PlayFxEventByEntityId",
+ "className": "NetworkTestPlayerComponent",
+ "resultSlotIDs": [
+ {}
+ ],
+ "inputSlots": [
+ {
+ "m_id": "{F22A7438-E72F-4757-90D9-99F03C91E10D}"
+ }
+ ],
+ "prettyClassName": "NetworkTestPlayerComponent"
+ }
+ }
+ }
+ ],
+ "m_connections": [
+ {
+ "Id": {
+ "id": 57029676705208
+ },
+ "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(TimeDelay: Start)",
+ "Components": {
+ "Component_[5204535376548158590]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 5204535376548158590,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 57025381737912
+ },
+ "slotId": {
+ "m_id": "{28664064-2483-465A-9BB1-4E1890048CDF}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 57012496836024
+ },
+ "slotId": {
+ "m_id": "{EA0DF0AE-2FF7-4670-8D99-7CF863038E68}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 57055446508984
+ },
+ "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Repeater: Start)",
+ "Components": {
+ "Component_[6292481678297438578]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 6292481678297438578,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 57012496836024
+ },
+ "slotId": {
+ "m_id": "{158B30BE-BD39-40AE-A8A8-F0E5694F0180}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 56986727032248
+ },
+ "slotId": {
+ "m_id": "{07267CBA-B377-4B57-8A04-E322F8BFC07F}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 9392713697629
+ },
+ "Name": "srcEndpoint=(Repeater: Action), destEndpoint=(AuthorityToClientNoParams_PlayFxByEntityId: In)",
+ "Components": {
+ "Component_[17811480012084226596]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 17811480012084226596,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 56986727032248
+ },
+ "slotId": {
+ "m_id": "{C1CCBA7B-A13B-4FCE-99ED-8FD1A8F72869}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8400576252253
+ },
+ "slotId": {
+ "m_id": "{AB0D7C00-A334-449A-AC56-EA3167AB8900}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 10269167405311
+ },
+ "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(Print: Value)",
+ "Components": {
+ "Component_[11931728297561282182]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 11931728297561282182,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8310662318335
+ },
+ "slotId": {
+ "m_id": "{36D47097-8F0C-4CBD-8DE2-32F4754C569F}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 56991021999544
+ },
+ "slotId": {
+ "m_id": "{CEBD2B9C-7DBA-486A-88DB-19F9C406B18E}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 11042261518591
+ },
+ "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(Print: In)",
+ "Components": {
+ "Component_[5559381044656171146]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 5559381044656171146,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8310662318335
+ },
+ "slotId": {
+ "m_id": "{6ECBD749-25FE-4813-B34E-EF46BC09E616}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 56991021999544
+ },
+ "slotId": {
+ "m_id": "{8E1B9705-148A-42E4-831E-D7B2877358E3}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 36365388695807
+ },
+ "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetEntityName: In)",
+ "Components": {
+ "Component_[5574600651313925988]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 5574600651313925988,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 57012496836024
+ },
+ "slotId": {
+ "m_id": "{158B30BE-BD39-40AE-A8A8-F0E5694F0180}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8310662318335
+ },
+ "slotId": {
+ "m_id": "{03554C56-8237-4C19-B9F8-87DEA1AC3ED0}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 9022993654369
+ },
+ "Name": "srcEndpoint=(GetAuthorityToClientNoParams_PlayFxEventByEntityId: Event<>), destEndpoint=(AuthorityToClientNoParams_PlayFx Notify Event: AuthorityToClientNoParams_PlayFx Notify Event)",
+ "Components": {
+ "Component_[4910818715692868417]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 4910818715692868417,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 7820402811489
+ },
+ "slotId": {
+ "m_id": "{9C6DDF96-6BF0-45ED-B15F-2E6C2FF5F886}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8318619017825
+ },
+ "slotId": {
+ "m_id": "{5F809F1C-ED4E-4391-9E33-AD3B64561A40}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 9078828229217
+ },
+ "Name": "srcEndpoint=(GetAuthorityToClientNoParams_PlayFxEventByEntityId: Out), destEndpoint=(AuthorityToClientNoParams_PlayFx Notify Event: Connect)",
+ "Components": {
+ "Component_[16758724763058723803]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 16758724763058723803,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 7820402811489
+ },
+ "slotId": {
+ "m_id": "{94C2AF04-6BFA-4E5A-9490-C7479A7AF61E}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 8318619017825
+ },
+ "slotId": {
+ "m_id": "{2A42C379-8E3B-46EF-BC63-C1D5395CB583}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 9808972669537
+ },
+ "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetAuthorityToClientNoParams_PlayFxEventByEntityId: In)",
+ "Components": {
+ "Component_[597205010205160938]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 597205010205160938,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 57012496836024
+ },
+ "slotId": {
+ "m_id": "{158B30BE-BD39-40AE-A8A8-F0E5694F0180}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 7820402811489
+ },
+ "slotId": {
+ "m_id": "{510F56FD-6778-4DB8-BDDE-258335431CC6}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 10148275085921
+ },
+ "Name": "srcEndpoint=(AuthorityToClientNoParams_PlayFx Notify Event: OnEvent), destEndpoint=(Print: In)",
+ "Components": {
+ "Component_[1594149632687531010]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 1594149632687531010,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8318619017825
+ },
+ "slotId": {
+ "m_id": "{0481BBFE-D31E-421F-A6C2-8A7AF3012545}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 56995316966840
+ },
+ "slotId": {
+ "m_id": "{7CAD6E31-6218-4326-8FFB-0523F545E250}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 10629311423073
+ },
+ "Name": "srcEndpoint=(AuthorityToClientNoParams_PlayFx Notify Event: OnEvent), destEndpoint=(DrawTextOnEntity: In)",
+ "Components": {
+ "Component_[17976200298405988971]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 17976200298405988971,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 8318619017825
+ },
+ "slotId": {
+ "m_id": "{0481BBFE-D31E-421F-A6C2-8A7AF3012545}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 57003906901432
+ },
+ "slotId": {
+ "m_id": "{1673B8A0-D4EC-4CC7-8F80-0419BB5560EB}"
+ }
+ }
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 42045766425613
+ },
+ "Name": "srcEndpoint=(Repeater: Action), destEndpoint=(Print: In)",
+ "Components": {
+ "Component_[1911118463107071864]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 1911118463107071864,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 56986727032248
+ },
+ "slotId": {
+ "m_id": "{C1CCBA7B-A13B-4FCE-99ED-8FD1A8F72869}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 56999611934136
+ },
+ "slotId": {
+ "m_id": "{2F11CF04-DC4B-4881-8D74-AB0E51B4A278}"
+ }
+ }
+ }
+ }
+ }
+ ]
+ },
+ "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
+ "versionData": {
+ "_grammarVersion": 1,
+ "_runtimeVersion": 1,
+ "_fileVersion": 1
+ },
+ "GraphCanvasData": [
+ {
+ "Key": {
+ "id": 7820402811489
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ -100.0,
+ 400.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{F35F8202-B5EE-4ADD-9FF6-AF214A094266}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8310662318335
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 80.0,
+ -320.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{346AFC26-B2EF-4495-AA1A-347BF77CB99D}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8318619017825
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "HandlerNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 340.0,
+ 400.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".azeventhandler"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{67499699-CA73-48B4-87E0-C66F4A3EA7CB}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 8400576252253
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 420.0,
+ -60.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{2B6329F7-4CE7-4E01-B1A4-1FFCAB2D0B72}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 56986727032248
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "DefaultNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 80.0,
+ -60.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{41B7477C-D5B9-49AC-AFA3-AAAE2A6ED7C5}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 56991021999544
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "StringNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 540.0,
+ -320.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{0CF0846C-1D21-4B33-8723-1538FD4FD04A}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 56995316966840
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "StringNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 800.0,
+ 260.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{0D04EBA6-E1E7-4DF7-BAA9-CC87F4689CD2}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 56999611934136
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "StringNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 420.0,
+ 100.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{A4FDCB87-B021-48B9-ABCB-AECA986B33D6}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 57003906901432
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MethodNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 800.0,
+ 460.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData",
+ "SubStyle": ".method"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{82D0ED1B-98D3-4AEF-B1DA-2F27CACD3A4D}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 57012496836024
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "DefaultNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ -220.0,
+ -40.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{D3F081D7-40C1-4C31-B298-B18C6AFDFD25}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 57025381737912
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "TimeNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ -380.0,
+ -20.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{675C7E90-B89E-4347-A3C6-B8D12B6EA698}"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 1685762441320719908
+ },
+ "Value": {
+ "ComponentData": {
+ "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
+ "$type": "SceneComponentSaveData",
+ "ViewParams": {
+ "AnchorX": -349.0,
+ "AnchorY": 10.0
+ }
+ }
+ }
+ }
+ }
+ ],
+ "StatisticsHelper": {
+ "InstanceCounter": [
+ {
+ "Key": 4199610336680704683,
+ "Value": 1
+ },
+ {
+ "Key": 4847610523576971761,
+ "Value": 1
+ },
+ {
+ "Key": 6462358712820489356,
+ "Value": 1
+ },
+ {
+ "Key": 7087687843968394353,
+ "Value": 1
+ },
+ {
+ "Key": 8679770052035517025,
+ "Value": 1
+ },
+ {
+ "Key": 10684225535275896474,
+ "Value": 3
+ },
+ {
+ "Key": 11983076003173356132,
+ "Value": 1
+ },
+ {
+ "Key": 13774516196858047560,
+ "Value": 1
+ },
+ {
+ "Key": 13774516226790665785,
+ "Value": 1
+ }
+ ]
+ }
+ },
+ "Component_[630514155173445772]": {
+ "$type": "EditorGraphVariableManagerComponent",
+ "Id": 630514155173445772
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptcanvas b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptcanvas
new file mode 100644
index 0000000000..3ba5cc6b7d
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptcanvas
@@ -0,0 +1,662 @@
+{
+ "Type": "JsonSerialization",
+ "Version": 1,
+ "ClassName": "ScriptCanvasData",
+ "ClassData": {
+ "m_scriptCanvas": {
+ "Id": {
+ "id": 17732469402520
+ },
+ "Name": "Untitled-1",
+ "Components": {
+ "Component_[16492301523567686923]": {
+ "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
+ "Id": 16492301523567686923,
+ "m_graphData": {
+ "m_nodes": [
+ {
+ "Id": {
+ "id": 17741059337112
+ },
+ "Name": "SC-Node(OperatorAdd)",
+ "Components": {
+ "Component_[11612963594766700030]": {
+ "$type": "OperatorAdd",
+ "Id": 11612963594766700030,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{B7529112-C29F-45F0-811C-DB8EE18EB8B8}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "In",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{49618851-F6B2-4B90-BFDF-ADBAAA84BBA4}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Out",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{4612C904-82DF-4B48-8485-4C878AF9A4D1}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "MathOperatorContract",
+ "NativeTypes": [
+ {
+ "m_type": 3
+ },
+ {
+ "m_type": 6
+ },
+ {
+ "m_type": 8
+ },
+ {
+ "m_type": 9
+ },
+ {
+ "m_type": 10
+ },
+ {
+ "m_type": 11
+ },
+ {
+ "m_type": 12
+ },
+ {
+ "m_type": 14
+ },
+ {
+ "m_type": 15
+ }
+ ]
+ }
+ ],
+ "slotName": "Number",
+ "toolTip": "An operand to use in performing the specified Operation",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "DisplayGroup": {
+ "Value": 1114760223
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DynamicGroup": {
+ "Value": 1114760223
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{8451E795-6A0E-44CE-81FD-AEF0EE5B0400}"
+ }
+ },
+ {
+ "id": {
+ "m_id": "{610B3BFB-9043-47A0-9694-5F14A1947E36}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "MathOperatorContract",
+ "NativeTypes": [
+ {
+ "m_type": 3
+ },
+ {
+ "m_type": 6
+ },
+ {
+ "m_type": 8
+ },
+ {
+ "m_type": 9
+ },
+ {
+ "m_type": 10
+ },
+ {
+ "m_type": 11
+ },
+ {
+ "m_type": 12
+ },
+ {
+ "m_type": 14
+ },
+ {
+ "m_type": 15
+ }
+ ]
+ }
+ ],
+ "slotName": "Number",
+ "toolTip": "An operand to use in performing the specified Operation",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "DisplayGroup": {
+ "Value": 1114760223
+ },
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DynamicGroup": {
+ "Value": 1114760223
+ },
+ "DataType": 1
+ },
+ {
+ "id": {
+ "m_id": "{36FFF1AB-C208-47CB-8271-436C85E0AE42}"
+ },
+ "DynamicTypeOverride": 3,
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ },
+ {
+ "$type": "MathOperatorContract",
+ "NativeTypes": [
+ {
+ "m_type": 3
+ },
+ {
+ "m_type": 6
+ },
+ {
+ "m_type": 8
+ },
+ {
+ "m_type": 9
+ },
+ {
+ "m_type": 10
+ },
+ {
+ "m_type": 11
+ },
+ {
+ "m_type": 12
+ },
+ {
+ "m_type": 14
+ },
+ {
+ "m_type": 15
+ }
+ ]
+ }
+ ],
+ "slotName": "Result",
+ "toolTip": "The result of the specified operation",
+ "DisplayDataType": {
+ "m_type": 3
+ },
+ "DisplayGroup": {
+ "Value": 1114760223
+ },
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 2
+ },
+ "DynamicGroup": {
+ "Value": 1114760223
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{8451E795-6A0E-44CE-81FD-AEF0EE5B0400}"
+ }
+ }
+ ],
+ "Datums": [
+ {
+ "isOverloadedStorage": false,
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0,
+ "label": "Number"
+ },
+ {
+ "isOverloadedStorage": false,
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 1.0,
+ "label": "Number"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "Id": {
+ "id": 17736764369816
+ },
+ "Name": "ReceiveScriptEvent",
+ "Components": {
+ "Component_[16408183651077237195]": {
+ "$type": "ReceiveScriptEvent",
+ "Id": 16408183651077237195,
+ "Slots": [
+ {
+ "id": {
+ "m_id": "{8DC10581-B8DF-473C-9C75-996111DBF560}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Connect",
+ "toolTip": "Connect this event handler to the specified entity.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{E60D1951-E56D-41F8-84C5-AD0BA803DD51}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Disconnect",
+ "toolTip": "Disconnect this event handler.",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{1BCE6CAC-B1C0-43FA-B4F5-E9A34D5064E5}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "OnConnected",
+ "toolTip": "Signaled when a connection has taken place.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{FEB42E9A-D562-4BBD-90AB-32255124BFE8}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "OnDisconnected",
+ "toolTip": "Signaled when this event handler is disconnected.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{C9EF936B-8C74-42B4-8793-67FC7FD3BCBC}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "OnFailure",
+ "toolTip": "Signaled when it is not possible to connect this handler.",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ }
+ },
+ {
+ "id": {
+ "m_id": "{76985C7A-761A-4CEF-9F55-6DD2B136317A}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "ExecutionSlot:NewPlayerScriptActive",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ },
+ {
+ "id": {
+ "m_id": "{5CD8E1E9-6192-4B7D-9C2C-6C18BE99CF44}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "Number",
+ "Descriptor": {
+ "ConnectionType": 1,
+ "SlotType": 2
+ },
+ "DataType": 1,
+ "IsReference": true,
+ "VariableReference": {
+ "m_id": "{8451E795-6A0E-44CE-81FD-AEF0EE5B0400}"
+ }
+ },
+ {
+ "id": {
+ "m_id": "{9FDB71AA-0F19-406D-82CA-508A2CA10F95}"
+ },
+ "contracts": [
+ {
+ "$type": "SlotTypeContract"
+ }
+ ],
+ "slotName": "ExecutionSlot:GetNumberOfActivePlayers",
+ "Descriptor": {
+ "ConnectionType": 2,
+ "SlotType": 1
+ },
+ "IsLatent": true
+ }
+ ],
+ "Datums": [
+ {
+ "isOverloadedStorage": false,
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0,
+ "label": "Number"
+ }
+ ],
+ "m_version": 1,
+ "m_eventMap": [
+ {
+ "Key": {
+ "Value": 242067946
+ },
+ "Value": {
+ "m_scriptEventAssetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "m_eventName": "GetNumberOfActivePlayers",
+ "m_eventSlotId": {
+ "m_id": "{9FDB71AA-0F19-406D-82CA-508A2CA10F95}"
+ },
+ "m_resultSlotId": {
+ "m_id": "{5CD8E1E9-6192-4B7D-9C2C-6C18BE99CF44}"
+ }
+ }
+ },
+ {
+ "Key": {
+ "Value": 2930121176
+ },
+ "Value": {
+ "m_scriptEventAssetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "m_eventName": "NewPlayerScriptActive",
+ "m_eventSlotId": {
+ "m_id": "{76985C7A-761A-4CEF-9F55-6DD2B136317A}"
+ }
+ }
+ }
+ ],
+ "m_eventSlotMapping": {
+ "{155BF981-AD70-4D29-81A6-1517FAE59FB1}": {
+ "m_id": "{5CD8E1E9-6192-4B7D-9C2C-6C18BE99CF44}"
+ },
+ "{65D394D3-F90D-4F10-94BF-F5E1581CF2CF}": {
+ "m_id": "{76985C7A-761A-4CEF-9F55-6DD2B136317A}"
+ },
+ "{67784749-9B41-429C-9C97-3D296182EB67}": {
+ "m_id": "{9FDB71AA-0F19-406D-82CA-508A2CA10F95}"
+ }
+ },
+ "m_scriptEventAssetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "m_asset": {
+ "assetId": {
+ "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptevents"
+ }
+ }
+ }
+ }
+ ],
+ "m_connections": [
+ {
+ "Id": {
+ "id": 17745354304408
+ },
+ "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:NewPlayerScriptActive), destEndpoint=(Add (+): In)",
+ "Components": {
+ "Component_[8782209668839578826]": {
+ "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
+ "Id": 8782209668839578826,
+ "sourceEndpoint": {
+ "nodeId": {
+ "id": 17736764369816
+ },
+ "slotId": {
+ "m_id": "{76985C7A-761A-4CEF-9F55-6DD2B136317A}"
+ }
+ },
+ "targetEndpoint": {
+ "nodeId": {
+ "id": 17741059337112
+ },
+ "slotId": {
+ "m_id": "{B7529112-C29F-45F0-811C-DB8EE18EB8B8}"
+ }
+ }
+ }
+ }
+ }
+ ],
+ "m_scriptEventAssets": [
+ [
+ {
+ "id": 17736764369816
+ },
+ {}
+ ]
+ ]
+ },
+ "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
+ "versionData": {
+ "_grammarVersion": 1,
+ "_runtimeVersion": 1,
+ "_fileVersion": 1
+ },
+ "m_variableCounter": 1,
+ "GraphCanvasData": [
+ {
+ "Key": {
+ "id": 17732469402520
+ },
+ "Value": {
+ "ComponentData": {
+ "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
+ "$type": "SceneComponentSaveData"
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 17736764369816
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ -360.0,
+ -60.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{C419A1CF-CBA8-416B-BF6C-4B574C3E59E3}"
+ },
+ "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
+ "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
+ "EventNames": [
+ [
+ {
+ "Value": 242067946
+ },
+ "GetNumberOfActivePlayers"
+ ],
+ [
+ {
+ "Value": 2930121176
+ },
+ "NewPlayerScriptActive"
+ ]
+ ]
+ }
+ }
+ }
+ },
+ {
+ "Key": {
+ "id": 17741059337112
+ },
+ "Value": {
+ "ComponentData": {
+ "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
+ "$type": "NodeSaveData"
+ },
+ "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
+ "$type": "GeneralNodeTitleComponentSaveData",
+ "PaletteOverride": "MathNodeTitlePalette"
+ },
+ "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
+ "$type": "GeometrySaveData",
+ "Position": [
+ 120.0,
+ 100.0
+ ]
+ },
+ "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
+ "$type": "StylingComponentSaveData"
+ },
+ "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
+ "$type": "PersistentIdComponentSaveData",
+ "PersistentId": "{0D0751AD-8164-4196-9C09-8CDB9AAA296F}"
+ }
+ }
+ }
+ }
+ ],
+ "StatisticsHelper": {
+ "InstanceCounter": [
+ {
+ "Key": 1244476766431948410,
+ "Value": 1
+ },
+ {
+ "Key": 1678857390775488101,
+ "Value": 1
+ },
+ {
+ "Key": 1678857392390856307,
+ "Value": 1
+ }
+ ]
+ }
+ },
+ "Component_[16498171485036643402]": {
+ "$type": "EditorGraphVariableManagerComponent",
+ "Id": 16498171485036643402,
+ "m_variableData": {
+ "m_nameVariableMap": [
+ {
+ "Key": {
+ "m_id": "{8451E795-6A0E-44CE-81FD-AEF0EE5B0400}"
+ },
+ "Value": {
+ "Datum": {
+ "isOverloadedStorage": false,
+ "scriptCanvasType": {
+ "m_type": 3
+ },
+ "isNullPointer": false,
+ "$type": "double",
+ "value": 0.0
+ },
+ "VariableId": {
+ "m_id": "{8451E795-6A0E-44CE-81FD-AEF0EE5B0400}"
+ },
+ "VariableName": "ActivePlayerCount"
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptevents b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptevents
new file mode 100644
index 0000000000..059713e14b
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/GlobalGameData.scriptevents
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/Player.prefab b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/Player.prefab
new file mode 100644
index 0000000000..2653809dda
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/Player.prefab
@@ -0,0 +1,195 @@
+{
+ "ContainerEntity": {
+ "Id": "ContainerEntity",
+ "Name": "Player",
+ "Components": {
+ "Component_[10603663676997462041]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 10603663676997462041
+ },
+ "Component_[11066377844757909329]": {
+ "$type": "EditorPrefabComponent",
+ "Id": 11066377844757909329
+ },
+ "Component_[11664640320098005944]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 11664640320098005944
+ },
+ "Component_[12551690377468870725]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 12551690377468870725,
+ "Parent Entity": ""
+ },
+ "Component_[16402163080075698011]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 16402163080075698011
+ },
+ "Component_[3491366785918494447]": {
+ "$type": "EditorLockComponent",
+ "Id": 3491366785918494447
+ },
+ "Component_[4830373679514129871]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 4830373679514129871
+ },
+ "Component_[5144323498211834874]": {
+ "$type": "SelectionComponent",
+ "Id": 5144323498211834874
+ },
+ "Component_[5267607163086533733]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 5267607163086533733
+ },
+ "Component_[6678300504118618849]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 6678300504118618849
+ },
+ "Component_[8384628950786300469]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8384628950786300469,
+ "Child Entity Order": [
+ "Entity_[10070247746456]"
+ ]
+ }
+ }
+ },
+ "Entities": {
+ "Entity_[10070247746456]": {
+ "Id": "Entity_[10070247746456]",
+ "Name": "Player",
+ "Components": {
+ "Component_[1059478843478789313]": {
+ "$type": "EditorInspectorComponent",
+ "Id": 1059478843478789313,
+ "ComponentOrderEntryArray": [
+ {
+ "ComponentId": 9878555871810913249
+ },
+ {
+ "ComponentId": 11481641385923146202,
+ "SortIndex": 1
+ },
+ {
+ "ComponentId": 11440172471478606933,
+ "SortIndex": 2
+ },
+ {
+ "ComponentId": 17461691807054668218,
+ "SortIndex": 3
+ },
+ {
+ "ComponentId": 15530420875454157766,
+ "SortIndex": 4
+ },
+ {
+ "ComponentId": 10596595655489113153,
+ "SortIndex": 5
+ }
+ ]
+ },
+ "Component_[10596595655489113153]": {
+ "$type": "EditorScriptCanvasComponent",
+ "Id": 10596595655489113153,
+ "m_name": "AutoComponent_RPC",
+ "m_assetHolder": {
+ "m_asset": {
+ "assetId": {
+ "guid": "{5ED120C4-07DC-56F1-80A7-37BFC98FD74E}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/autocomponent_rpc.scriptcanvas"
+ }
+ },
+ "runtimeDataIsValid": true,
+ "runtimeDataOverrides": {
+ "source": {
+ "assetId": {
+ "guid": "{5ED120C4-07DC-56F1-80A7-37BFC98FD74E}"
+ },
+ "assetHint": "levels/multiplayer/autocomponent_rpc/autocomponent_rpc.scriptcanvas"
+ }
+ }
+ },
+ "Component_[11440172471478606933]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 11440172471478606933,
+ "m_template": {
+ "$type": "Multiplayer::NetworkTransformComponent"
+ }
+ },
+ "Component_[11481641385923146202]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 11481641385923146202,
+ "m_template": {
+ "$type": "NetBindComponent"
+ }
+ },
+ "Component_[13110996849704981748]": {
+ "$type": "EditorVisibilityComponent",
+ "Id": 13110996849704981748
+ },
+ "Component_[1472895075383059499]": {
+ "$type": "EditorLockComponent",
+ "Id": 1472895075383059499
+ },
+ "Component_[1526920553231193509]": {
+ "$type": "EditorPendingCompositionComponent",
+ "Id": 1526920553231193509
+ },
+ "Component_[15530420875454157766]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 15530420875454157766,
+ "m_template": {
+ "$type": "Multiplayer::LocalPredictionPlayerInputComponent"
+ }
+ },
+ "Component_[1699895912837266792]": {
+ "$type": "EditorDisabledCompositionComponent",
+ "Id": 1699895912837266792
+ },
+ "Component_[17461691807054668218]": {
+ "$type": "GenericComponentWrapper",
+ "Id": 17461691807054668218,
+ "m_template": {
+ "$type": "AutomatedTesting::NetworkTestPlayerComponent"
+ }
+ },
+ "Component_[3622545398462507871]": {
+ "$type": "EditorOnlyEntityComponent",
+ "Id": 3622545398462507871
+ },
+ "Component_[5778259918231688598]": {
+ "$type": "AZ::Render::EditorMeshComponent",
+ "Id": 5778259918231688598,
+ "Controller": {
+ "Configuration": {
+ "ModelAsset": {
+ "assetId": {
+ "guid": "{F322592F-43BC-50E7-903C-CC231846093F}",
+ "subId": 276443623
+ },
+ "assetHint": "objects/_primitives/_cylinder_1x1.azmodel"
+ }
+ }
+ }
+ },
+ "Component_[7004633483882343256]": {
+ "$type": "SelectionComponent",
+ "Id": 7004633483882343256
+ },
+ "Component_[8469628382507693850]": {
+ "$type": "EditorEntitySortComponent",
+ "Id": 8469628382507693850
+ },
+ "Component_[9407892837096707905]": {
+ "$type": "EditorEntityIconComponent",
+ "Id": 9407892837096707905
+ },
+ "Component_[9878555871810913249]": {
+ "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+ "Id": 9878555871810913249,
+ "Parent Entity": "ContainerEntity"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/tags.txt b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/tags.txt
new file mode 100644
index 0000000000..0d6c1880e7
--- /dev/null
+++ b/AutomatedTesting/Levels/Multiplayer/AutoComponent_RPC/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/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/AutomatedTesting/project.json b/AutomatedTesting/project.json
index 9222777ef3..fc14645d2b 100644
--- a/AutomatedTesting/project.json
+++ b/AutomatedTesting/project.json
@@ -7,7 +7,7 @@
"android_settings": {
"package_name": "com.lumberyard.yourgame",
"version_number": 1,
- "version_name": "1.0.0.0",
+ "version_name": "1.0.0",
"orientation": "landscape"
},
"engine": "o3de",
diff --git a/Code/Editor/AboutDialog.cpp b/Code/Editor/AboutDialog.cpp
index c0fd39e1ae..ba086cad5d 100644
--- a/Code/Editor/AboutDialog.cpp
+++ b/Code/Editor/AboutDialog.cpp
@@ -30,8 +30,6 @@ CAboutDialog::CAboutDialog(QString versionText, QString richTextCopyrightNotice,
m_ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
- connect(m_ui->m_transparentAgreement, &QLabel::linkActivated, this, &CAboutDialog::OnCustomerAgreement);
-
m_ui->m_transparentTrademarks->setText(versionText);
m_ui->m_transparentAllRightReserved->setObjectName("copyrightNotice");
@@ -84,9 +82,4 @@ void CAboutDialog::mouseReleaseEvent(QMouseEvent* event)
QDialog::mouseReleaseEvent(event);
}
-void CAboutDialog::OnCustomerAgreement()
-{
- QDesktopServices::openUrl(QUrl(QStringLiteral("https://www.o3debinaries.org/license")));
-}
-
#include
diff --git a/Code/Editor/AboutDialog.h b/Code/Editor/AboutDialog.h
index db079a6ec7..279d7cd399 100644
--- a/Code/Editor/AboutDialog.h
+++ b/Code/Editor/AboutDialog.h
@@ -30,8 +30,6 @@ public:
private:
- void OnCustomerAgreement();
-
void mouseReleaseEvent(QMouseEvent* event) override;
void paintEvent(QPaintEvent* event) override;
diff --git a/Code/Editor/AboutDialog.ui b/Code/Editor/AboutDialog.ui
index 09a7c18841..a7433c620f 100644
--- a/Code/Editor/AboutDialog.ui
+++ b/Code/Editor/AboutDialog.ui
@@ -181,14 +181,17 @@
-
-
+
- Terms of Use
+ <a href="https://www.o3debinaries.org/license">Terms of Use</a>
+
+
+ Qt::RichText
Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop
-
+
true
@@ -274,11 +277,6 @@
QWidget
-
- ClickableLabel
- QLabel
-
-
diff --git a/Code/Editor/Animation/AnimationBipedBoneNames.cpp b/Code/Editor/Animation/AnimationBipedBoneNames.cpp
deleted file mode 100644
index 72502fe61d..0000000000
--- a/Code/Editor/Animation/AnimationBipedBoneNames.cpp
+++ /dev/null
@@ -1,30 +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
- *
- */
-
-#include "EditorDefs.h"
-
-#include "AnimationBipedBoneNames.h"
-
-namespace EditorAnimationBones::Biped
-{
- const char* Pelvis = "Bip01 Pelvis";
- const char* Head = "Bip01 Head";
- const char* Weapon = "weapon_bone";
-
- const char* LeftEye = "eye_bone_left";
- const char* RightEye = "eye_bone_right";
-
- const char* Spine[5] = { "Bip01 Spine", "Bip01 Spine1", "Bip01 Spine2", "Bip01 Spine3", "Bip01 Spine4" };
- const char* Neck[2] = { "Bip01 Neck", "Bip01 Neck1" };
-
- const char* LeftHeel = "Bip01 L Heel";
- const char* LeftToe[2] = { "Bip01 L Toe0", "Bip01 L Toe1" };
-
- const char* RightHeel = "Bip01 R Heel";
- const char* RightToe[2] = { "Bip01 R Toe0", "Bip01 R Toe1" };
-} // namespace EditorAnimationBones::Biped
diff --git a/Code/Editor/Animation/AnimationBipedBoneNames.h b/Code/Editor/Animation/AnimationBipedBoneNames.h
deleted file mode 100644
index fdcfff7c82..0000000000
--- a/Code/Editor/Animation/AnimationBipedBoneNames.h
+++ /dev/null
@@ -1,34 +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
- *
- */
-#ifndef CRYINCLUDE_EDITOR_ANIMATION_ANIMATIONBIPEDBONENAMES_H
-#define CRYINCLUDE_EDITOR_ANIMATION_ANIMATIONBIPEDBONENAMES_H
-#pragma once
-
-namespace EditorAnimationBones
-{
- namespace Biped
- {
- extern const char* Pelvis;
- extern const char* Head;
- extern const char* Weapon;
-
- extern const char* Spine[5];
- extern const char* Neck[2];
-
- extern const char* LeftEye;
- extern const char* RightEye;
-
- extern const char* LeftHeel;
- extern const char* RightHeel;
- extern const char* LeftToe[2];
- extern const char* RightToe[2];
- }
-}
-
-
-#endif // CRYINCLUDE_EDITOR_ANIMATION_ANIMATIONBIPEDBONENAMES_H
diff --git a/Code/Editor/Common/spline_edit-00.png b/Code/Editor/Common/spline_edit-00.png
deleted file mode 100644
index 0243becc2b..0000000000
--- a/Code/Editor/Common/spline_edit-00.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:58ef978b31b31df9aaf715a0e9b006fde414a17a3ff15a3bf680eaad7418867a
-size 364
diff --git a/Code/Editor/Common/spline_edit-01.png b/Code/Editor/Common/spline_edit-01.png
deleted file mode 100644
index 4789ee0820..0000000000
--- a/Code/Editor/Common/spline_edit-01.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:98a681ec3d89ee57c5d1057fe984dcf8ad45721f47ae4df57fa358fbee85e616
-size 385
diff --git a/Code/Editor/Common/spline_edit-02.png b/Code/Editor/Common/spline_edit-02.png
deleted file mode 100644
index 476883a514..0000000000
--- a/Code/Editor/Common/spline_edit-02.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:24a2b2c9242a841c20e7815dab0d80a575844055328aea413d28b7283b65a92e
-size 386
diff --git a/Code/Editor/Common/spline_edit-03.png b/Code/Editor/Common/spline_edit-03.png
deleted file mode 100644
index c1e79719a5..0000000000
--- a/Code/Editor/Common/spline_edit-03.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ce23a276fec849b8f832fab96d3b738793335c27d37ae3813158387f3415b508
-size 377
diff --git a/Code/Editor/Common/spline_edit-04.png b/Code/Editor/Common/spline_edit-04.png
deleted file mode 100644
index e9cfb9d79e..0000000000
--- a/Code/Editor/Common/spline_edit-04.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c03befab41765200f4f28dbf1e0b2a702d2244bfa79b0d463f5d58d0a26095fc
-size 386
diff --git a/Code/Editor/Common/spline_edit-05.png b/Code/Editor/Common/spline_edit-05.png
deleted file mode 100644
index 3046c6008d..0000000000
--- a/Code/Editor/Common/spline_edit-05.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:418c3f0f27854b3795841359014d87686a7bf94daf2568d9cfd3ffac22675f69
-size 386
diff --git a/Code/Editor/Common/spline_edit-06.png b/Code/Editor/Common/spline_edit-06.png
deleted file mode 100644
index 3c170baa3e..0000000000
--- a/Code/Editor/Common/spline_edit-06.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d3a831f34ac53c9b1f20037290e8a2b62a3cfb8a4f86467591f44fd2a0e3c15b
-size 379
diff --git a/Code/Editor/Common/spline_edit-07.png b/Code/Editor/Common/spline_edit-07.png
deleted file mode 100644
index 1c87d462ed..0000000000
--- a/Code/Editor/Common/spline_edit-07.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4267102ca7a889c34eff905480a68878d4d56e15bc723a5b0575cd472e259f5d
-size 389
diff --git a/Code/Editor/Common/spline_edit-08.png b/Code/Editor/Common/spline_edit-08.png
deleted file mode 100644
index 52c436f877..0000000000
--- a/Code/Editor/Common/spline_edit-08.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:a0df013dd102b87348fba18b4da5443591309e9c40166d27ae928636924154ea
-size 388
diff --git a/Code/Editor/Common/spline_edit-09.png b/Code/Editor/Common/spline_edit-09.png
deleted file mode 100644
index 1223730915..0000000000
--- a/Code/Editor/Common/spline_edit-09.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e713076ab5abbbb2cf28da431a339e9905acc790e35295f025aa2e79e1c04141
-size 376
diff --git a/Code/Editor/Common/spline_edit-10.png b/Code/Editor/Common/spline_edit-10.png
deleted file mode 100644
index 3b2a27bdbf..0000000000
--- a/Code/Editor/Common/spline_edit-10.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9e5af9d62ceafc3b8a1dfc36772350cd623fcc86c68711b299e143ff133f79b6
-size 387
diff --git a/Code/Editor/Common/spline_edit-11.png b/Code/Editor/Common/spline_edit-11.png
deleted file mode 100644
index 7b68ead52b..0000000000
--- a/Code/Editor/Common/spline_edit-11.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:17c5fb3d7b87ea87a98934954c721573c641bc44005a34f1e16589d7f39b71e8
-size 409
diff --git a/Code/Editor/Common/spline_edit-12.png b/Code/Editor/Common/spline_edit-12.png
deleted file mode 100644
index 3c7abb2182..0000000000
--- a/Code/Editor/Common/spline_edit-12.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6f5c78d9f764b62fb7dcf400c91c1edea9d7f88a426ba513fbf70825c6bcd2ac
-size 383
diff --git a/Code/Editor/Common/spline_edit-13.png b/Code/Editor/Common/spline_edit-13.png
deleted file mode 100644
index f71a5ec300..0000000000
--- a/Code/Editor/Common/spline_edit-13.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:376b549602afffca407525b77c1a9821bf6a0e279792ae2e52fe0a4f7c3c5bd4
-size 364
diff --git a/Code/Editor/Common/spline_edit-14.png b/Code/Editor/Common/spline_edit-14.png
deleted file mode 100644
index 4a5f89b089..0000000000
--- a/Code/Editor/Common/spline_edit-14.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e7dc48f8d324b7563b168f27ebde1e00ee2bd11ba462f114a05b297913e285c5
-size 374
diff --git a/Code/Editor/Common/spline_edit-15.png b/Code/Editor/Common/spline_edit-15.png
deleted file mode 100644
index 8542318682..0000000000
--- a/Code/Editor/Common/spline_edit-15.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:66b73afbd6dba1caaedfaae161b277b460b5198f7fc00bec414530116c567276
-size 375
diff --git a/Code/Editor/Common/spline_edit-16.png b/Code/Editor/Common/spline_edit-16.png
deleted file mode 100644
index 6926024cbd..0000000000
--- a/Code/Editor/Common/spline_edit-16.png
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ae6e6714acf495246f4e59f6e5640f3a4417ea50100d37a116950d2b859aed0c
-size 417
diff --git a/Code/Editor/Core/LevelEditorMenuHandler.cpp b/Code/Editor/Core/LevelEditorMenuHandler.cpp
index 70aff10f87..05f06c87aa 100644
--- a/Code/Editor/Core/LevelEditorMenuHandler.cpp
+++ b/Code/Editor/Core/LevelEditorMenuHandler.cpp
@@ -104,6 +104,11 @@ namespace
}
}
+ // Currently (December 13, 2021), this function is only used by slice editor code.
+ // When the slice editor is not enabled, there are no references to the
+ // HideActionWhileEntitiesDeselected function, causing a compiler warning and
+ // subsequently a build error.
+#ifdef ENABLE_SLICE_EDITOR
void HideActionWhileEntitiesDeselected(QAction* action, EEditorNotifyEvent editorNotifyEvent)
{
if (action == nullptr)
@@ -127,6 +132,7 @@ namespace
break;
}
}
+#endif
void DisableActionWhileInSimMode(QAction* action, EEditorNotifyEvent editorNotifyEvent)
{
@@ -374,7 +380,6 @@ QMenu* LevelEditorMenuHandler::CreateFileMenu()
{
DisableActionWhileLevelChanges(fileOpenSlice, e);
}));
-#endif
// Save Selected Slice
auto saveSelectedSlice = fileMenu.AddAction(ID_FILE_SAVE_SELECTED_SLICE);
@@ -391,7 +396,7 @@ QMenu* LevelEditorMenuHandler::CreateFileMenu()
{
HideActionWhileEntitiesDeselected(saveSliceToRoot, e);
}));
-
+#endif
// Open Recent
m_mostRecentLevelsMenu = fileMenu.AddMenu(tr("Open Recent"));
connect(m_mostRecentLevelsMenu, &QMenu::aboutToShow, this, &LevelEditorMenuHandler::UpdateMRUFiles);
@@ -439,9 +444,10 @@ QMenu* LevelEditorMenuHandler::CreateFileMenu()
// Show Log File
fileMenu.AddAction(ID_FILE_EDITLOGFILE);
+#ifdef ENABLE_SLICE_EDITOR
fileMenu.AddSeparator();
-
fileMenu.AddAction(ID_FILE_RESAVESLICES);
+#endif
fileMenu.AddSeparator();
@@ -538,6 +544,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 +730,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..77099761c1 100644
--- a/Code/Editor/CryEdit.cpp
+++ b/Code/Editor/CryEdit.cpp
@@ -380,13 +380,13 @@ void CCryEditApp::RegisterActionHandlers()
ON_COMMAND(ID_IMPORT_ASSET, OnOpenAssetImporter)
ON_COMMAND(ID_EDIT_LEVELDATA, OnEditLevelData)
ON_COMMAND(ID_FILE_EDITLOGFILE, OnFileEditLogFile)
- ON_COMMAND(ID_FILE_RESAVESLICES, OnFileResaveSlices)
ON_COMMAND(ID_FILE_EDITEDITORINI, OnFileEditEditorini)
ON_COMMAND(ID_PREFERENCES, OnPreferences)
ON_COMMAND(ID_REDO, OnRedo)
ON_COMMAND(ID_TOOLBAR_WIDGET_REDO, OnRedo)
ON_COMMAND(ID_FILE_OPEN_LEVEL, OnOpenLevel)
#ifdef ENABLE_SLICE_EDITOR
+ ON_COMMAND(ID_FILE_RESAVESLICES, OnFileResaveSlices)
ON_COMMAND(ID_FILE_NEW_SLICE, OnCreateSlice)
ON_COMMAND(ID_FILE_OPEN_SLICE, OnOpenSlice)
#endif
@@ -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()
{
@@ -2636,6 +2629,7 @@ void CCryEditApp::OnFileEditLogFile()
CFileUtil::EditTextFile(CLogFile::GetLogFileName(), 0, IFileUtil::FILE_TYPE_SCRIPT);
}
+#ifdef ENABLE_SLICE_EDITOR
void CCryEditApp::OnFileResaveSlices()
{
AZStd::vector sliceAssetInfos;
@@ -2766,6 +2760,7 @@ void CCryEditApp::OnFileResaveSlices()
}
}
+#endif
//////////////////////////////////////////////////////////////////////////
void CCryEditApp::OnFileEditEditorini()
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/EditorPanelUtils.cpp b/Code/Editor/EditorPanelUtils.cpp
index a270de5978..1a3c9bcb4a 100644
--- a/Code/Editor/EditorPanelUtils.cpp
+++ b/Code/Editor/EditorPanelUtils.cpp
@@ -319,8 +319,8 @@ public:
keys.push_back(QPair("Edit Menu.Duplicate", "Ctrl+D"));
keys.push_back(QPair("Edit Menu.Undo", "Ctrl+Z"));
keys.push_back(QPair("Edit Menu.Redo", "Ctrl+Shift+Z"));
- keys.push_back(QPair("Edit Menu.Group", "Ctrl+G"));
- keys.push_back(QPair("Edit Menu.Ungroup", "Ctrl+Shift+G"));
+ keys.push_back(QPair("Edit Menu.Group", "Ctrl+Alt+O"));
+ keys.push_back(QPair("Edit Menu.Ungroup", "Ctrl+Alt+P"));
keys.push_back(QPair("Edit Menu.Rename", "Ctrl+R"));
keys.push_back(QPair("Edit Menu.Reset", ""));
keys.push_back(QPair("Edit Menu.Edit Hotkeys", ""));
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/IEditorImpl.cpp b/Code/Editor/IEditorImpl.cpp
index e5df6be58e..5bd816174c 100644
--- a/Code/Editor/IEditorImpl.cpp
+++ b/Code/Editor/IEditorImpl.cpp
@@ -1445,7 +1445,7 @@ ISourceControl* CEditorImpl::GetSourceControl()
{
IClassDesc* pClass = classes[i];
ISourceControl* pSCM = nullptr;
- HRESULT hRes = pClass->QueryInterface(__uuidof(ISourceControl), (void**)&pSCM);
+ HRESULT hRes = pClass->QueryInterface(__az_uuidof(ISourceControl), (void**)&pSCM);
if (!FAILED(hRes) && pSCM)
{
m_pSourceControl = pSCM;
diff --git a/Code/Editor/Include/IEditorClassFactory.h b/Code/Editor/Include/IEditorClassFactory.h
index dd47f803e2..6c85192436 100644
--- a/Code/Editor/Include/IEditorClassFactory.h
+++ b/Code/Editor/Include/IEditorClassFactory.h
@@ -31,10 +31,7 @@ struct IUnknown
};
#endif
-#ifdef __uuidof
-#undef __uuidof
-#endif
-#define __uuidof(T) T::uuid()
+#define __az_uuidof(T) T::uuid()
#if defined(AZ_PLATFORM_LINUX) || defined(AZ_PLATFORM_MAC)
@@ -107,7 +104,7 @@ struct IClassDesc
template
HRESULT STDMETHODCALLTYPE QueryInterface(Q** pp)
{
- return QueryInterface(__uuidof(Q), (void**)pp);
+ return QueryInterface(__az_uuidof(Q), (void**)pp);
}
//////////////////////////////////////////////////////////////////////////
diff --git a/Code/Editor/Include/IViewPane.h b/Code/Editor/Include/IViewPane.h
index b4a25a87a9..f2425fb954 100644
--- a/Code/Editor/Include/IViewPane.h
+++ b/Code/Editor/Include/IViewPane.h
@@ -60,7 +60,7 @@ struct IViewPaneClass
//////////////////////////////////////////////////////////////////////////
HRESULT STDMETHODCALLTYPE QueryInterface(const IID& riid, void** ppvObj)
{
- if (riid == __uuidof(IViewPaneClass))
+ if (riid == __az_uuidof(IViewPaneClass))
{
*ppvObj = this;
return S_OK;
diff --git a/Code/Editor/Lib/Tests/test_ClickableLabel.cpp b/Code/Editor/Lib/Tests/test_ClickableLabel.cpp
deleted file mode 100644
index a676714992..0000000000
--- a/Code/Editor/Lib/Tests/test_ClickableLabel.cpp
+++ /dev/null
@@ -1,58 +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
- *
- */
-
-#include "EditorDefs.h"
-#include
-#include
-#include
-
-#include
-
-using namespace AZ;
-using namespace ::testing;
-
-namespace UnitTest
-{
- class TestingClickableLabel
- : public ScopedAllocatorSetupFixture
- {
- public:
- ClickableLabel m_clickableLabel;
- };
-
- TEST_F(TestingClickableLabel, CursorDoesNotUpdateWhileDisabled)
- {
- m_clickableLabel.setEnabled(false);
-
- QApplication::setOverrideCursor(QCursor(Qt::BlankCursor));
- QEnterEvent enterEvent{ QPointF(), QPointF(), QPointF() };
- QApplication::sendEvent(&m_clickableLabel, &enterEvent);
-
- const Qt::CursorShape cursorShape = QApplication::overrideCursor()->shape();
- EXPECT_THAT(cursorShape, Ne(Qt::PointingHandCursor));
- EXPECT_THAT(cursorShape, Eq(Qt::BlankCursor));
- }
-
- TEST_F(TestingClickableLabel, DoesNotRespondToDblClickWhileDisabled)
- {
- m_clickableLabel.setEnabled(false);
-
- bool linkActivated = false;
- QObject::connect(&m_clickableLabel, &QLabel::linkActivated, [&linkActivated]()
- {
- linkActivated = true;
- });
-
- QMouseEvent mouseEvent {
- QEvent::MouseButtonDblClick, QPointF(),
- Qt::LeftButton, Qt::LeftButton, Qt::NoModifier };
- QApplication::sendEvent(&m_clickableLabel, &mouseEvent);
-
- EXPECT_THAT(linkActivated, Eq(false));
- }
-} // namespace UnitTest
diff --git a/Code/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp
index 38e433c3a3..bbebac96a3 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);
@@ -642,11 +643,11 @@ void MainWindow::InitActions()
.SetStatusTip(tr("Create a new slice"));
am->AddAction(ID_FILE_OPEN_SLICE, tr("Open Slice..."))
.SetStatusTip(tr("Open an existing slice"));
-#endif
am->AddAction(ID_FILE_SAVE_SELECTED_SLICE, tr("Save selected slice")).SetShortcut(tr("Alt+S"))
.SetStatusTip(tr("Save the selected slice to the first level root"));
am->AddAction(ID_FILE_SAVE_SLICE_TO_ROOT, tr("Save Slice to root")).SetShortcut(tr("Ctrl+Alt+S"))
.SetStatusTip(tr("Save the selected slice to the top level root"));
+#endif
am->AddAction(ID_FILE_SAVE_LEVEL, tr("&Save"))
.SetShortcut(tr("Ctrl+S"))
.SetReserved()
@@ -676,7 +677,9 @@ void MainWindow::InitActions()
.RegisterUpdateCallback(cryEdit, &CCryEditApp::OnUpdateSelected);
am->AddAction(ID_FILE_EXPORTOCCLUSIONMESH, tr("Export Occlusion Mesh"));
am->AddAction(ID_FILE_EDITLOGFILE, tr("Show Log File"));
+#ifdef ENABLE_SLICE_EDITOR
am->AddAction(ID_FILE_RESAVESLICES, tr("Resave All Slices"));
+#endif
am->AddAction(ID_FILE_PROJECT_MANAGER_SETTINGS, tr("Edit Project Settings..."));
am->AddAction(ID_FILE_PROJECT_MANAGER_NEW, tr("New Project..."));
am->AddAction(ID_FILE_PROJECT_MANAGER_OPEN, tr("Open Project..."));
@@ -798,27 +801,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 +934,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/Plugin.cpp b/Code/Editor/Plugin.cpp
index 68f8d8833b..16c386e31c 100644
--- a/Code/Editor/Plugin.cpp
+++ b/Code/Editor/Plugin.cpp
@@ -155,7 +155,7 @@ IViewPaneClass* CClassFactory::FindViewPaneClassByTitle(const char* pPaneTitle)
{
IViewPaneClass* viewPane = nullptr;
IClassDesc* desc = m_classes[i];
- if (SUCCEEDED(desc->QueryInterface(__uuidof(IViewPaneClass), (void**)&viewPane)))
+ if (SUCCEEDED(desc->QueryInterface(__az_uuidof(IViewPaneClass), (void**)&viewPane)))
{
if (QString::compare(viewPane->GetPaneTitle(), pPaneTitle) == 0)
{
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/PerforcePlugin/PerforceSourceControl.h b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h
index ec06fdc82a..794dca0f86 100644
--- a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h
+++ b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h
@@ -49,7 +49,7 @@ public:
// from IUnknown
HRESULT STDMETHODCALLTYPE QueryInterface(const IID& riid, void** ppvObj)
{
- if (riid == __uuidof(ISourceControl) /* && m_pIntegrator*/)
+ if (riid == __az_uuidof(ISourceControl) /* && m_pIntegrator*/)
{
*ppvObj = this;
return S_OK;
diff --git a/Code/Editor/PreferencesStdPages.cpp b/Code/Editor/PreferencesStdPages.cpp
index 1dd40702a7..77b912a44e 100644
--- a/Code/Editor/PreferencesStdPages.cpp
+++ b/Code/Editor/PreferencesStdPages.cpp
@@ -50,7 +50,7 @@ CStdPreferencesClassDesc::CStdPreferencesClassDesc()
HRESULT CStdPreferencesClassDesc::QueryInterface(const IID& riid, void** ppvObj)
{
- if (riid == __uuidof(IPreferencesPageCreator))
+ if (riid == __az_uuidof(IPreferencesPageCreator))
{
*ppvObj = (IPreferencesPageCreator*)this;
return S_OK;
diff --git a/Code/Editor/QtUI/ClickableLabel.cpp b/Code/Editor/QtUI/ClickableLabel.cpp
deleted file mode 100644
index b0694e5f18..0000000000
--- a/Code/Editor/QtUI/ClickableLabel.cpp
+++ /dev/null
@@ -1,101 +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
- *
- */
-#include "EditorDefs.h"
-
-#include "ClickableLabel.h"
-
-
-ClickableLabel::ClickableLabel(const QString& text, QWidget* parent)
- : QLabel(parent)
- , m_text(text)
- , m_showDecoration(false)
-{
- setTextFormat(Qt::RichText);
- setTextInteractionFlags(Qt::TextBrowserInteraction);
-}
-
-ClickableLabel::ClickableLabel(QWidget* parent)
- : QLabel(parent)
- , m_showDecoration(false)
-{
- setTextFormat(Qt::RichText);
- setTextInteractionFlags(Qt::TextBrowserInteraction);
-}
-
-void ClickableLabel::showEvent([[maybe_unused]] QShowEvent* event)
-{
- updateFormatting(false);
-}
-
-void ClickableLabel::enterEvent(QEvent* ev)
-{
- if (!isEnabled())
- {
- return;
- }
-
- updateFormatting(true);
- QApplication::setOverrideCursor(QCursor(Qt::PointingHandCursor));
- QLabel::enterEvent(ev);
-}
-
-void ClickableLabel::leaveEvent(QEvent* ev)
-{
- if (!isEnabled())
- {
- return;
- }
-
- updateFormatting(false);
- QApplication::restoreOverrideCursor();
- QLabel::leaveEvent(ev);
-}
-
-void ClickableLabel::setText(const QString& text)
-{
- m_text = text;
- QLabel::setText(text);
- updateFormatting(false);
-}
-
-void ClickableLabel::setShowDecoration(bool b)
-{
- m_showDecoration = b;
- updateFormatting(false);
-}
-
-void ClickableLabel::updateFormatting(bool mouseOver)
-{
- //FIXME: this should be done differently. Using a style sheet would be easiest.
-
- QColor c = palette().color(QPalette::WindowText);
- if (mouseOver || m_showDecoration)
- {
- QLabel::setText(QString(R"(%2)").arg(c.name(), m_text));
- }
- else
- {
- QLabel::setText(m_text);
- }
-}
-
-bool ClickableLabel::event(QEvent* e)
-{
- if (isEnabled())
- {
- if (e->type() == QEvent::MouseButtonDblClick)
- {
- emit linkActivated(QString());
- return true; //ignore
- }
- }
-
- return QLabel::event(e);
-}
-
-#include
diff --git a/Code/Editor/QtUI/ClickableLabel.h b/Code/Editor/QtUI/ClickableLabel.h
deleted file mode 100644
index 2b14676eae..0000000000
--- a/Code/Editor/QtUI/ClickableLabel.h
+++ /dev/null
@@ -1,39 +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
- *
- */
-#pragma once
-#ifndef CRYINCLUDE_EDITORCOMMON_CLICKABLELABEL_H
-#define CRYINCLUDE_EDITORCOMMON_CLICKABLELABEL_H
-
-#if !defined(Q_MOC_RUN)
-#include
-#endif
-
-class SANDBOX_API ClickableLabel
- : public QLabel
-{
- Q_OBJECT
-public:
- explicit ClickableLabel(const QString& text, QWidget* parent = nullptr);
- explicit ClickableLabel(QWidget* parent = nullptr);
- bool event(QEvent* e) override;
-
- void setText(const QString& text);
- void setShowDecoration(bool b);
-
-protected:
- void showEvent(QShowEvent* event) override;
- void enterEvent(QEvent* ev) override;
- void leaveEvent(QEvent* ev) override;
-
-private:
- void updateFormatting(bool mouseOver);
- QString m_text;
- bool m_showDecoration;
-};
-
-#endif
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/Util/FileUtil.cpp b/Code/Editor/Util/FileUtil.cpp
index 9f96d45381..182a122ea8 100644
--- a/Code/Editor/Util/FileUtil.cpp
+++ b/Code/Editor/Util/FileUtil.cpp
@@ -251,7 +251,7 @@ bool CFileUtil::ExtractDccFilenameFromAssetDatabase(const QString& assetFilename
for (size_t i = 0; i < assetDatabasePlugins.size(); ++i)
{
- if (assetDatabasePlugins[i]->QueryInterface(__uuidof(IAssetItemDatabase), (void**)&pCurrentDatabaseInterface) == S_OK)
+ if (assetDatabasePlugins[i]->QueryInterface(__az_uuidof(IAssetItemDatabase), (void**)&pCurrentDatabaseInterface) == S_OK)
{
if (!pCurrentDatabaseInterface)
{
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/Editor/editor_lib_files.cmake b/Code/Editor/editor_lib_files.cmake
index fa627176d8..a63a74f01d 100644
--- a/Code/Editor/editor_lib_files.cmake
+++ b/Code/Editor/editor_lib_files.cmake
@@ -297,8 +297,6 @@ set(FILES
Util/AffineParts.cpp
Objects/BaseObject.cpp
Objects/BaseObject.h
- Animation/AnimationBipedBoneNames.cpp
- Animation/AnimationBipedBoneNames.h
AnimationContext.cpp
AnimationContext.h
AzAssetBrowser/AzAssetBrowserRequestHandler.cpp
@@ -526,8 +524,6 @@ set(FILES
PythonEditorFuncs.h
QtUI/QCollapsibleGroupBox.h
QtUI/QCollapsibleGroupBox.cpp
- QtUI/ClickableLabel.h
- QtUI/ClickableLabel.cpp
QtUI/PixmapLabelPreview.h
QtUI/PixmapLabelPreview.cpp
QtUI/WaitCursor.h
diff --git a/Code/Editor/editor_lib_test_files.cmake b/Code/Editor/editor_lib_test_files.cmake
index 17f36228db..5b66357c41 100644
--- a/Code/Editor/editor_lib_test_files.cmake
+++ b/Code/Editor/editor_lib_test_files.cmake
@@ -8,7 +8,6 @@
set(FILES
Lib/Tests/IEditorMock.h
- Lib/Tests/test_ClickableLabel.cpp
Lib/Tests/test_CryEditPythonBindings.cpp
Lib/Tests/test_CryEditDocPythonBindings.cpp
Lib/Tests/test_EditorPythonBindings.cpp
diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.h b/Code/Framework/AzCore/AzCore/IO/Path/Path.h
index 094dee16f2..7f89809294 100644
--- a/Code/Framework/AzCore/AzCore/IO/Path/Path.h
+++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.h
@@ -484,6 +484,7 @@ namespace AZ::IO
// as_posix
//! Replicates the behavior of the Python pathlib as_posix method
//! by replacing the Windows Path Separator with the Posix Path Seperator
+ constexpr string_type AsPosix() const;
AZStd::string StringAsPosix() const;
constexpr AZStd::fixed_string FixedMaxPathStringAsPosix() const noexcept;
diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl
index 5ac15fc728..0dc1799528 100644
--- a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl
+++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl
@@ -1043,6 +1043,13 @@ namespace AZ::IO
// as_posix
// Returns a copy of the path with the path separators converted to PosixPathSeparator
template
+ constexpr auto BasicPath::AsPosix() const -> string_type
+ {
+ string_type resultPath(m_path.begin(), m_path.end());
+ AZStd::replace(resultPath.begin(), resultPath.end(), WindowsPathSeparator, PosixPathSeparator);
+ return resultPath;
+ }
+ template
AZStd::string BasicPath::StringAsPosix() const
{
AZStd::string resultPath(m_path.begin(), m_path.end());
diff --git a/Code/Framework/AzCore/AzCore/IO/Path/PathReflect.cpp b/Code/Framework/AzCore/AzCore/IO/Path/PathReflect.cpp
index 55a991f19f..1d0cdba66c 100644
--- a/Code/Framework/AzCore/AzCore/IO/Path/PathReflect.cpp
+++ b/Code/Framework/AzCore/AzCore/IO/Path/PathReflect.cpp
@@ -7,6 +7,8 @@
*/
#include
+#include
+#include
#include
#include
@@ -35,10 +37,8 @@ namespace AZ::IO
size_t Save(const void* classPtr, IO::GenericStream& stream, bool) override
{
/// Save paths out using the PosixPathSeparator
- PathType path(reinterpret_cast(classPtr)->Native(), AZ::IO::PosixPathSeparator);
- path.MakePreferred();
-
- return static_cast(stream.Write(path.Native().size(), path.c_str()));
+ auto posixPathString{ reinterpret_cast(classPtr)->AsPosix() };
+ return static_cast(stream.Write(posixPathString.size(), posixPathString.c_str()));
}
bool Load(void* classPtr, IO::GenericStream& stream, unsigned int, bool) override
@@ -73,5 +73,11 @@ namespace AZ::IO
AZ::SerializeContext::IDataSerializer::CreateDefaultDeleteDeleter() })
;
}
+ else if (auto jsonContext = azrtti_cast(context))
+ {
+ jsonContext->Serializer()
+ ->HandlesType()
+ ->HandlesType();
+ }
}
}
diff --git a/Code/Framework/AzCore/AzCore/Interface/Interface.h b/Code/Framework/AzCore/AzCore/Interface/Interface.h
index 8664e2905f..8f72cfa109 100644
--- a/Code/Framework/AzCore/AzCore/Interface/Interface.h
+++ b/Code/Framework/AzCore/AzCore/Interface/Interface.h
@@ -109,6 +109,7 @@ namespace AZ
*/
static EnvironmentVariable s_instance;
static AZStd::shared_mutex s_mutex;
+ static bool s_instanceAssigned;
};
template
@@ -117,6 +118,9 @@ namespace AZ
template
AZStd::shared_mutex Interface::s_mutex;
+ template
+ bool Interface::s_instanceAssigned;
+
template
void Interface::Register(T* type)
{
@@ -135,18 +139,19 @@ namespace AZ
AZStd::unique_lock lock(s_mutex);
s_instance = Environment::CreateVariable(GetVariableName());
s_instance.Get() = type;
+ s_instanceAssigned = true;
}
template
void Interface::Unregister(T* type)
{
- if (!s_instance || !s_instance.Get())
+ if (!s_instanceAssigned)
{
AZ_Assert(false, "Interface '%s' not registered on this module!", AzTypeInfo::Name());
return;
}
- if (s_instance.Get() != type)
+ if (s_instance && s_instance.Get() != type)
{
AZ_Assert(false, "Interface '%s' is not the same instance that was registered! [Expected '%p', Found '%p']", AzTypeInfo::Name(), type, s_instance.Get());
return;
@@ -156,6 +161,7 @@ namespace AZ
AZStd::unique_lock lock(s_mutex);
*s_instance = nullptr;
s_instance.Reset();
+ s_instanceAssigned = false;
}
template
@@ -165,9 +171,9 @@ namespace AZ
// This is the fast path which won't block.
{
AZStd::shared_lock lock(s_mutex);
- if (s_instance)
+ if (s_instanceAssigned)
{
- return s_instance.Get();
+ return s_instance ? s_instance.Get() : nullptr;
}
}
@@ -175,6 +181,7 @@ namespace AZ
// take the full lock and request it.
AZStd::unique_lock lock(s_mutex);
s_instance = Environment::FindVariable(GetVariableName());
+ s_instanceAssigned = true;
return s_instance ? s_instance.Get() : nullptr;
}
diff --git a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp
index 5d13acc34c..4f143cde53 100644
--- a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp
+++ b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp
@@ -8,1558 +8,1608 @@
#include
-using namespace AZ;
-using namespace Intersect;
-
-//=========================================================================
-// IntersectSegmentTriangleCCW
-// [10/21/2009]
-//=========================================================================
-bool Intersect::IntersectSegmentTriangleCCW(
- const Vector3& p, const Vector3& q, const Vector3& a, const Vector3& b, const Vector3& c,
- /*float &u, float &v, float &w,*/ Vector3& normal, float& t)
+namespace AZ
{
- float v, w; // comment this and enable input params if we need the barycentric coordinates
+ //=========================================================================
+ // IntersectSegmentTriangleCCW
+ // [10/21/2009]
+ //=========================================================================
+ bool Intersect::IntersectSegmentTriangleCCW(
+ const Vector3& p,
+ const Vector3& q,
+ const Vector3& a,
+ const Vector3& b,
+ const Vector3& c,
+ /*float &u, float &v, float &w,*/ Vector3& normal,
+ float& t)
+ {
+ float v, w; // comment this and enable input params if we need the barycentric coordinates
+
+ Vector3 ab = b - a;
+ Vector3 ac = c - a;
+ Vector3 qp = p - q;
+
+ // Compute triangle normal. Can be pre-calculated/cached if
+ // intersecting multiple segments against the same triangle
+ normal = ab.Cross(ac); // Right hand CCW
+
+ // Compute denominator d. If d <= 0, segment is parallel to or points
+ // away from triangle, so exit early
+ float d = qp.Dot(normal);
+ if (d <= 0.0f)
+ {
+ return false;
+ }
- Vector3 ab = b - a;
- Vector3 ac = c - a;
- Vector3 qp = p - q;
+ // Compute intersection t value of pq with plane of triangle. A ray
+ // intersects iff 0 <= t. Segment intersects iff 0 <= t <= 1. Delay
+ // dividing by d until intersection has been found to pierce triangle
+ Vector3 ap = p - a;
+ t = ap.Dot(normal);
- // Compute triangle normal. Can be pre-calculated/cached if
- // intersecting multiple segments against the same triangle
- normal = ab.Cross(ac); // Right hand CCW
+ // range segment check t[0,1] (it this case [0,d])
+ if (t < 0.0f || t > d)
+ {
+ return false;
+ }
- // Compute denominator d. If d <= 0, segment is parallel to or points
- // away from triangle, so exit early
- float d = qp.Dot(normal);
- if (d <= 0.0f)
- {
- return false;
- }
+ // Compute barycentric coordinate components and test if within bounds
+ Vector3 e = qp.Cross(ap);
+ v = ac.Dot(e);
+ if (v < 0.0f || v > d)
+ {
+ return false;
+ }
+ w = -ab.Dot(e);
+ if (w < 0.0f || v + w > d)
+ {
+ return false;
+ }
- // Compute intersection t value of pq with plane of triangle. A ray
- // intersects iff 0 <= t. Segment intersects iff 0 <= t <= 1. Delay
- // dividing by d until intersection has been found to pierce triangle
- Vector3 ap = p - a;
- t = ap.Dot(normal);
+ // Segment/ray intersects triangle. Perform delayed division and
+ // compute the last barycentric coordinate component
+ float ood = 1.0f / d;
+ t *= ood;
+ /*v *= ood;
+ w *= ood;
+ u = 1.0f - v - w;*/
- // range segment check t[0,1] (it this case [0,d])
- if (t < 0.0f || t > d)
- {
- return false;
- }
+ normal.Normalize();
- // Compute barycentric coordinate components and test if within bounds
- Vector3 e = qp.Cross(ap);
- v = ac.Dot(e);
- if (v < 0.0f || v > d)
- {
- return false;
+ return true;
}
- w = -ab.Dot(e);
- if (w < 0.0f || v + w > d)
+
+ //=========================================================================
+ // IntersectSegmentTriangle
+ // [10/21/2009]
+ //=========================================================================
+ bool Intersect::IntersectSegmentTriangle(
+ const Vector3& p,
+ const Vector3& q,
+ const Vector3& a,
+ const Vector3& b,
+ const Vector3& c,
+ /*float &u, float &v, float &w,*/ Vector3& normal,
+ float& t)
{
- return false;
- }
+ float v, w; // comment this and enable input params if we need the barycentric coordinates
- // Segment/ray intersects triangle. Perform delayed division and
- // compute the last barycentric coordinate component
- float ood = 1.0f / d;
- t *= ood;
- /*v *= ood;
- w *= ood;
- u = 1.0f - v - w;*/
+ Vector3 ab = b - a;
+ Vector3 ac = c - a;
+ Vector3 qp = p - q;
+ Vector3 ap = p - a;
- normal.Normalize();
+ // Compute triangle normal. Can be pre-calculated or cached if
+ // intersecting multiple segments against the same triangle
+ normal = ab.Cross(ac); // Right hand CCW
- return true;
-}
+ // Compute denominator d. If d <= 0, segment is parallel to or points
+ // away from triangle, so exit early
+ float d = qp.Dot(normal);
+ Vector3 e;
+ if (d > Constants::FloatEpsilon)
+ {
+ // the normal is on the right side
+ e = qp.Cross(ap);
+ }
+ else
+ {
+ normal = -normal;
-//=========================================================================
-// IntersectSegmentTriangle
-// [10/21/2009]
-//=========================================================================
-bool
-Intersect::IntersectSegmentTriangle(
- const Vector3& p, const Vector3& q, const Vector3& a, const Vector3& b, const Vector3& c,
- /*float &u, float &v, float &w,*/ Vector3& normal, float& t)
-{
- float v, w; // comment this and enable input params if we need the barycentric coordinates
-
- Vector3 ab = b - a;
- Vector3 ac = c - a;
- Vector3 qp = p - q;
- Vector3 ap = p - a;
-
- // Compute triangle normal. Can be pre-calculated or cached if
- // intersecting multiple segments against the same triangle
- normal = ab.Cross(ac); // Right hand CCW
-
- // Compute denominator d. If d <= 0, segment is parallel to or points
- // away from triangle, so exit early
- float d = qp.Dot(normal);
- Vector3 e;
- if (d > Constants::FloatEpsilon)
- {
- // the normal is on the right side
- e = qp.Cross(ap);
- }
- else
- {
- normal = -normal;
+ // so either have a parallel ray or our normal is flipped
+ if (d >= -Constants::FloatEpsilon)
+ {
+ return false; // parallel
+ }
+ d = -d;
+ e = ap.Cross(qp);
+ }
+
+ // Compute intersection t value of pq with plane of triangle. A ray
+ // intersects iff 0 <= t. Segment intersects iff 0 <= t <= 1. Delay
+ // dividing by d until intersection has been found to pierce triangle
+ t = ap.Dot(normal);
- // so either have a parallel ray or our normal is flipped
- if (d >= -Constants::FloatEpsilon)
+ // range segment check t[0,1] (it this case [0,d])
+ if (t < 0.0f || t > d)
{
- return false; // parallel
+ return false;
}
- d = -d;
- e = ap.Cross(qp);
- }
- // Compute intersection t value of pq with plane of triangle. A ray
- // intersects iff 0 <= t. Segment intersects iff 0 <= t <= 1. Delay
- // dividing by d until intersection has been found to pierce triangle
- t = ap.Dot(normal);
+ // Compute barycentric coordinate components and test if within bounds
+ v = ac.Dot(e);
+ if (v < 0.0f || v > d)
+ {
+ return false;
+ }
+ w = -ab.Dot(e);
+ if (w < 0.0f || v + w > d)
+ {
+ return false;
+ }
- // range segment check t[0,1] (it this case [0,d])
- if (t < 0.0f || t > d)
- {
- return false;
- }
+ // Segment/ray intersects the triangle. Perform delayed division and
+ // compute the last barycentric coordinate component
+ float ood = 1.0f / d;
+ t *= ood;
+ // v *= ood;
+ // w *= ood;
+ // u = 1.0f - v - w;
- // Compute barycentric coordinate components and test if within bounds
- v = ac.Dot(e);
- if (v < 0.0f || v > d)
- {
- return false;
+ normal.Normalize();
+
+ return true;
}
- w = -ab.Dot(e);
- if (w < 0.0f || v + w > d)
+
+ //=========================================================================
+ // TestSegmentAABBOrigin
+ // [10/21/2009]
+ //=========================================================================
+ bool Intersect::TestSegmentAABBOrigin(const Vector3& midPoint, const Vector3& halfVector, const Vector3& aabbExtends)
{
- return false;
- }
+ const Vector3 EPSILON(0.001f); // \todo this is slow load move to a const
+ Vector3 absHalfVector = halfVector.GetAbs();
+ Vector3 absMidpoint = midPoint.GetAbs();
+ Vector3 absHalfMidpoint = absHalfVector + aabbExtends;
- // Segment/ray intersects the triangle. Perform delayed division and
- // compute the last barycentric coordinate component
- float ood = 1.0f / d;
- t *= ood;
- //v *= ood;
- //w *= ood;
- //u = 1.0f - v - w;
+ // Try world coordinate axes as separating axes
+ if (!absMidpoint.IsLessEqualThan(absHalfMidpoint))
+ {
+ return false;
+ }
- normal.Normalize();
+ // Add in an epsilon term to counteract arithmetic errors when segment is
+ // (near) parallel to a coordinate axis (see text for detail)
+ absHalfVector += EPSILON;
- return true;
-}
+ // Try cross products of segment direction vector with coordinate axes
+ Vector3 absMDCross = midPoint.Cross(halfVector).GetAbs();
+ // Vector3 eaDCross = absHalfVector.Cross(aabbExtends);
+ float ex = aabbExtends.GetX();
+ float ey = aabbExtends.GetY();
+ float ez = aabbExtends.GetZ();
+ float adx = absHalfVector.GetX();
+ float ady = absHalfVector.GetY();
+ float adz = absHalfVector.GetZ();
-//=========================================================================
-// TestSegmentAABBOrigin
-// [10/21/2009]
-//=========================================================================
-bool
-AZ::Intersect::TestSegmentAABBOrigin(const Vector3& midPoint, const Vector3& halfVector, const Vector3& aabbExtends)
-{
- const Vector3 EPSILON(0.001f); // \todo this is slow load move to a const
- Vector3 absHalfVector = halfVector.GetAbs();
- Vector3 absMidpoint = midPoint.GetAbs();
- Vector3 absHalfMidpoint = absHalfVector + aabbExtends;
+ Vector3 ead(ey * adz + ez * ady, ex * adz + ez * adx, ex * ady + ey * adx);
+ if (!absMDCross.IsLessEqualThan(ead))
+ {
+ return false;
+ }
- // Try world coordinate axes as separating axes
- if (!absMidpoint.IsLessEqualThan(absHalfMidpoint))
- {
- return false;
+ // No separating axis found; segment must be overlapping AABB
+ return true;
}
- // Add in an epsilon term to counteract arithmetic errors when segment is
- // (near) parallel to a coordinate axis (see text for detail)
- absHalfVector += EPSILON;
-
- // Try cross products of segment direction vector with coordinate axes
- Vector3 absMDCross = midPoint.Cross(halfVector).GetAbs();
- //Vector3 eaDCross = absHalfVector.Cross(aabbExtends);
- float ex = aabbExtends.GetX();
- float ey = aabbExtends.GetY();
- float ez = aabbExtends.GetZ();
- float adx = absHalfVector.GetX();
- float ady = absHalfVector.GetY();
- float adz = absHalfVector.GetZ();
-
- Vector3 ead(ey * adz + ez * ady, ex * adz + ez * adx, ex * ady + ey * adx);
- if (!absMDCross.IsLessEqualThan(ead))
+ //=========================================================================
+ // IntersectRayAABB
+ // [10/21/2009]
+ //=========================================================================
+ Intersect::RayAABBIsectTypes Intersect::IntersectRayAABB(
+ const Vector3& rayStart,
+ const Vector3& dir,
+ const Vector3& dirRCP,
+ const Aabb& aabb,
+ float& tStart,
+ float& tEnd,
+ Vector3& startNormal /*, Vector3& inter*/)
{
- return false;
- }
-
- // No separating axis found; segment must be overlapping AABB
- return true;
-}
-
+ // we don't need to test with all 6 normals (just 3)
-//=========================================================================
-// IntersectRayAABB
-// [10/21/2009]
-//=========================================================================
-RayAABBIsectTypes
-AZ::Intersect::IntersectRayAABB(
- const Vector3& rayStart, const Vector3& dir, const Vector3& dirRCP, const Aabb& aabb,
- float& tStart, float& tEnd, Vector3& startNormal /*, Vector3& inter*/)
-{
- // we don't need to test with all 6 normals (just 3)
-
- const float eps = 0.0001f; // \todo move to constant
- float tmin = 0.0f; // set to -RR_FLT_MAX to get first hit on line
- float tmax = std::numeric_limits::max(); // set to max distance ray can travel (for segment)
+ const float eps = 0.0001f; // \todo move to constant
+ float tmin = 0.0f; // set to -RR_FLT_MAX to get first hit on line
+ float tmax = std::numeric_limits::max(); // set to max distance ray can travel (for segment)
- const Vector3& aabbMin = aabb.GetMin();
- const Vector3& aabbMax = aabb.GetMax();
+ const Vector3& aabbMin = aabb.GetMin();
+ const Vector3& aabbMax = aabb.GetMax();
- // we unroll manually because there is no way to get in efficient way vectors for
- // each axis while getting it as a index
- Vector3 time1 = (aabbMin - rayStart) * dirRCP;
- Vector3 time2 = (aabbMax - rayStart) * dirRCP;
+ // we unroll manually because there is no way to get in efficient way vectors for
+ // each axis while getting it as a index
+ Vector3 time1 = (aabbMin - rayStart) * dirRCP;
+ Vector3 time2 = (aabbMax - rayStart) * dirRCP;
- // X
- if (std::fabs(dir.GetX()) < eps)
- {
- // Ray is parallel to slab. No hit if origin not within slab
- if (rayStart.GetX() < aabbMin.GetX() || rayStart.GetX() > aabbMax.GetX())
+ // X
+ if (std::fabs(dir.GetX()) < eps)
{
- return ISECT_RAY_AABB_NONE;
+ // Ray is parallel to slab. No hit if origin not within slab
+ if (rayStart.GetX() < aabbMin.GetX() || rayStart.GetX() > aabbMax.GetX())
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
}
- }
- else
- {
- // Compute intersection t value of ray with near and far plane of slab
- float t1 = time1.GetX();
- float t2 = time2.GetX();
- float nSign = -1.0f;
-
- // Make t1 be intersection with near plane, t2 with far plane
- if (t1 > t2)
+ else
{
- AZStd::swap(t1, t2);
- nSign = 1.0f;
- }
+ // Compute intersection t value of ray with near and far plane of slab
+ float t1 = time1.GetX();
+ float t2 = time2.GetX();
+ float nSign = -1.0f;
- // Compute the intersection of slab intersections intervals
- if (tmin < t1)
- {
- tmin = t1;
+ // Make t1 be intersection with near plane, t2 with far plane
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ nSign = 1.0f;
+ }
- startNormal.Set(nSign, 0.0f, 0.0f);
- }
+ // Compute the intersection of slab intersections intervals
+ if (tmin < t1)
+ {
+ tmin = t1;
- tmax = AZ::GetMin(tmax, t2);
+ startNormal.Set(nSign, 0.0f, 0.0f);
+ }
- // Exit with no collision as soon as slab intersection becomes empty
- if (tmin > tmax)
- {
- return ISECT_RAY_AABB_NONE;
- }
- }
+ tmax = AZ::GetMin(tmax, t2);
- // Y
- if (std::fabs(dir.GetY()) < eps)
- {
- // Ray is parallel to slab. No hit if origin not within slab
- if (rayStart.GetY() < aabbMin.GetY() || rayStart.GetY() > aabbMax.GetY())
- {
- return ISECT_RAY_AABB_NONE;
+ // Exit with no collision as soon as slab intersection becomes empty
+ if (tmin > tmax)
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
}
- }
- else
- {
- // Compute intersection t value of ray with near and far plane of slab
- float t1 = time1.GetY();
- float t2 = time2.GetY();
- float nSign = -1.0f;
- // Make t1 be intersection with near plane, t2 with far plane
- if (t1 > t2)
+ // Y
+ if (std::fabs(dir.GetY()) < eps)
{
- AZStd::swap(t1, t2);
- nSign = 1.0f;
+ // Ray is parallel to slab. No hit if origin not within slab
+ if (rayStart.GetY() < aabbMin.GetY() || rayStart.GetY() > aabbMax.GetY())
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
}
-
- // Compute the intersection of slab intersections intervals
- if (tmin < t1)
+ else
{
- tmin = t1;
+ // Compute intersection t value of ray with near and far plane of slab
+ float t1 = time1.GetY();
+ float t2 = time2.GetY();
+ float nSign = -1.0f;
- startNormal.Set(0.0f, nSign, 0.0f);
- }
+ // Make t1 be intersection with near plane, t2 with far plane
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ nSign = 1.0f;
+ }
- tmax = AZ::GetMin(tmax, t2);
+ // Compute the intersection of slab intersections intervals
+ if (tmin < t1)
+ {
+ tmin = t1;
- // Exit with no collision as soon as slab intersection becomes empty
- if (tmin > tmax)
- {
- return ISECT_RAY_AABB_NONE;
- }
- }
+ startNormal.Set(0.0f, nSign, 0.0f);
+ }
- // Z
- if (std::fabs(dir.GetZ()) < eps)
- {
- // Ray is parallel to slab. No hit if origin not within slab
- if (rayStart.GetZ() < aabbMin.GetZ() || rayStart.GetZ() > aabbMax.GetZ())
- {
- return ISECT_RAY_AABB_NONE;
- }
- }
- else
- {
- // Compute intersection t value of ray with near and far plane of slab
- float t1 = time1.GetZ();
- float t2 = time2.GetZ();
- float nSign = -1.0f;
+ tmax = AZ::GetMin(tmax, t2);
- // Make t1 be intersection with near plane, t2 with far plane
- if (t1 > t2)
- {
- AZStd::swap(t1, t2);
- nSign = 1.0f;
+ // Exit with no collision as soon as slab intersection becomes empty
+ if (tmin > tmax)
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
}
- // Compute the intersection of slab intersections intervals
- if (tmin < t1)
+ // Z
+ if (std::fabs(dir.GetZ()) < eps)
{
- tmin = t1;
-
- startNormal.Set(0.0f, 0.0f, nSign);
+ // Ray is parallel to slab. No hit if origin not within slab
+ if (rayStart.GetZ() < aabbMin.GetZ() || rayStart.GetZ() > aabbMax.GetZ())
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
}
-
- tmax = AZ::GetMin(tmax, t2);
-
- // Exit with no collision as soon as slab intersection becomes empty
- if (tmin > tmax)
+ else
{
- return ISECT_RAY_AABB_NONE;
- }
- }
-
- tStart = tmin;
- tEnd = tmax;
+ // Compute intersection t value of ray with near and far plane of slab
+ float t1 = time1.GetZ();
+ float t2 = time2.GetZ();
+ float nSign = -1.0f;
- if (tmin == 0.0f) // no intersect if the segments starts inside or coincident the aabb
- {
- return ISECT_RAY_AABB_SA_INSIDE;
- }
-
- // Ray intersects all 3 slabs. Return point (q) and intersection t value (tmin)
- //inter = rayStart + dir * tmin;
- return ISECT_RAY_AABB_ISECT;
-}
-
-//=========================================================================
-// IntersectRayAABB2
-// [2/18/2011]
-//=========================================================================
-RayAABBIsectTypes
-AZ::Intersect::IntersectRayAABB2(const Vector3& rayStart, const Vector3& dirRCP, const Aabb& aabb, float& start, float& end)
-{
- float tmin, tmax, tymin, tymax, tzmin, tzmax;
- Vector3 vZero = Vector3::CreateZero();
+ // Make t1 be intersection with near plane, t2 with far plane
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ nSign = 1.0f;
+ }
- Vector3 min = (Vector3::CreateSelectCmpGreaterEqual(dirRCP, vZero, aabb.GetMin(), aabb.GetMax()) - rayStart) * dirRCP;
- Vector3 max = (Vector3::CreateSelectCmpGreaterEqual(dirRCP, vZero, aabb.GetMax(), aabb.GetMin()) - rayStart) * dirRCP;
+ // Compute the intersection of slab intersections intervals
+ if (tmin < t1)
+ {
+ tmin = t1;
- tmin = min.GetX();
- tmax = max.GetX();
- tymin = min.GetY();
- tymax = max.GetY();
+ startNormal.Set(0.0f, 0.0f, nSign);
+ }
- if (tmin > tymax || tymin > tmax)
- {
- return ISECT_RAY_AABB_NONE;
- }
+ tmax = AZ::GetMin(tmax, t2);
- if (tymin > tmin)
- {
- tmin = tymin;
- }
+ // Exit with no collision as soon as slab intersection becomes empty
+ if (tmin > tmax)
+ {
+ return ISECT_RAY_AABB_NONE;
+ }
+ }
- if (tymax < tmax)
- {
- tmax = tymax;
- }
+ tStart = tmin;
+ tEnd = tmax;
- tzmin = min.GetZ();
- tzmax = max.GetZ();
+ if (tmin == 0.0f) // no intersect if the segments starts inside or coincident the aabb
+ {
+ return ISECT_RAY_AABB_SA_INSIDE;
+ }
- if (tmin > tzmax || tzmin > tmax)
- {
- return ISECT_RAY_AABB_NONE;
+ // Ray intersects all 3 slabs. Return point (q) and intersection t value (tmin)
+ // inter = rayStart + dir * tmin;
+ return ISECT_RAY_AABB_ISECT;
}
- if (tzmin > tmin)
- {
- tmin = tzmin;
- }
- if (tzmax < tmax)
+ //=========================================================================
+ // IntersectRayAABB2
+ // [2/18/2011]
+ //=========================================================================
+ Intersect::RayAABBIsectTypes Intersect::IntersectRayAABB2(
+ const Vector3& rayStart, const Vector3& dirRCP, const Aabb& aabb, float& start, float& end)
{
- tmax = tzmax;
- }
+ float tmin, tmax, tymin, tymax, tzmin, tzmax;
+ Vector3 vZero = Vector3::CreateZero();
- start = tmin;
- end = tmax;
+ Vector3 min = (Vector3::CreateSelectCmpGreaterEqual(dirRCP, vZero, aabb.GetMin(), aabb.GetMax()) - rayStart) * dirRCP;
+ Vector3 max = (Vector3::CreateSelectCmpGreaterEqual(dirRCP, vZero, aabb.GetMax(), aabb.GetMin()) - rayStart) * dirRCP;
- return ISECT_RAY_AABB_ISECT;
-}
+ tmin = min.GetX();
+ tmax = max.GetX();
+ tymin = min.GetY();
+ tymax = max.GetY();
-bool AZ::Intersect::IntersectRayDisk(
- const Vector3& rayOrigin, const Vector3& rayDir, const Vector3& diskCenter, const float diskRadius, const Vector3& diskNormal, float& t)
-{
- // First intersect with the plane of the disk
- float planeIntersectionDistance;
- int intersectionCount = IntersectRayPlane(rayOrigin, rayDir, diskCenter, diskNormal, planeIntersectionDistance);
- if (intersectionCount == 1)
- {
- // If the plane intersection point is inside the disk radius, then it intersected the disk.
- Vector3 pointOnPlane = rayOrigin + rayDir * planeIntersectionDistance;
- if (pointOnPlane.GetDistance(diskCenter) < diskRadius)
+ if (tmin > tymax || tymin > tmax)
{
- t = planeIntersectionDistance;
- return true;
+ return ISECT_RAY_AABB_NONE;
}
- }
- return false;
-}
-// Reference: Real-Time Collision Detection - 5.3.7 Intersecting Ray or Segment Against Cylinder, and the book's errata.
-int AZ::Intersect::IntersectRayCappedCylinder(
- const Vector3& rayOrigin, const Vector3& rayDir,
- const Vector3& cylinderEnd1, const Vector3& cylinderDir,
- float cylinderHeight, float cylinderRadius, float &t1, float &t2)
-{
- // dr = rayDir
- // dc = cylinderDir
- // r = cylinderRadius
- // Vector3 cylinderEnd2 = cylinderEnd1 + cylinderHeight * cylinderDir;
- Vector3 m = rayOrigin - cylinderEnd1; // vector from cylinderEnd1 to rayOrigin
- float dcm = cylinderDir.Dot(m); // projection of m on cylinderDir
- float dcdr = cylinderDir.Dot(rayDir); // projection of rayDir on cylinderDir
- float drm = rayDir.Dot(m); // projection of m on rayDir
- float r2 = cylinderRadius * cylinderRadius;
-
- if (dcm < 0.0f && dcdr <= 0.0f)
- {
- return 0; // rayOrigin is outside cylinderEnd1 and rayDir is pointing away from cylinderEnd1
- }
- if (dcm > cylinderHeight && dcdr >= 0.0f)
- {
- return 0; // rayOrigin is outside cylinderEnd2 and rayDir is pointing away from cylinderEnd2
- }
-
- // point RP on the ray: RP(t) = rayOrigin + t * rayDir
- // point CP on the cylinder surface: |(CP - cylinderEnd1) - cylinderDir.Dot(cp - cylinderEnd1) * cylinderDir|^2 = cylinderRadius^2
- // substitute RP(t) for CP: a*t^2 + 2b*t + c = 0, solving for t = [-2b +/- sqrt(4b^2 - 4ac)] / 2a
- float a = 1.0f - dcdr * dcdr; // always greater than or equal to 0
- float b = drm - dcm * dcdr;
- float c = m.Dot(m) - dcm * dcm - r2;
-
- const float EPSILON = 0.00001f;
+ if (tymin > tmin)
+ {
+ tmin = tymin;
+ }
- if (fabsf(a) < EPSILON) // the ray is parallel to the cylinder
- {
- if (c > EPSILON) // the ray is outside the cylinder
+ if (tymax < tmax)
{
- return 0;
+ tmax = tymax;
}
- else if (dcm < 0.0f) // the ray origin is on cylinderEnd1 side and ray is pointing to cylinderEnd2
+
+ tzmin = min.GetZ();
+ tzmax = max.GetZ();
+
+ if (tmin > tzmax || tzmin > tmax)
{
- t1 = -dcm;
- t2 = -dcm + cylinderHeight;
- return 2;
+ return ISECT_RAY_AABB_NONE;
}
- else if (dcm > cylinderHeight) // the ray origin is on cylinderEnd2 side and ray is pointing to cylinderEnd1
+
+ if (tzmin > tmin)
{
- t1 = dcm - cylinderHeight;
- t2 = dcm;
- return 2;
+ tmin = tzmin;
}
- else // (dcm > 0.0f && dcm < cylinderHeight) // the ray origin is inside the cylinder
+ if (tzmax < tmax)
{
- if (dcdr > 0.0f) // the ray is pointing to cylinderEnd2
- {
- t1 = cylinderHeight - dcm;
- return 1;
- }
- else if (dcdr < 0.0f) // the ray is pointing to cylinderEnd1
- {
- t2 = dcm;
- return 1;
- }
- else // impossible in theory
- {
- return 0;
- }
+ tmax = tzmax;
}
- }
-
- float discr = b * b - a * c;
- if (discr < 0.0f)
- {
- return 0;
- }
- float sqrt_discr = sqrt(discr);
- float tt1 = (-b - sqrt_discr) / a;
- float tt2 = (-b + sqrt_discr) / a;
+ start = tmin;
+ end = tmax;
- if (tt2 < 0.0f) // both intersections are behind the ray origin
- {
- return 0;
+ return ISECT_RAY_AABB_ISECT;
}
- // Vector3 AP2 = (rayOrigin + tt2 * rayDir) - cylinderEnd1; // vector from cylinderEnd1 to the intersecting point of parameter tt2
- // float s2 = cylinderDir.Dot(AP2);
- float s2 = dcm + tt2 * dcdr;
-
- if (discr < EPSILON) // tt1 == tt2
+ bool Intersect::IntersectRayDisk(
+ const Vector3& rayOrigin,
+ const Vector3& rayDir,
+ const Vector3& diskCenter,
+ const float diskRadius,
+ const Vector3& diskNormal,
+ float& t)
{
- if (s2 >= 0.0f && s2 <= cylinderHeight)
+ // First intersect with the plane of the disk
+ float planeIntersectionDistance;
+ int intersectionCount = IntersectRayPlane(rayOrigin, rayDir, diskCenter, diskNormal, planeIntersectionDistance);
+ if (intersectionCount == 1)
{
- t1 = tt1;
- return 1;
+ // If the plane intersection point is inside the disk radius, then it intersected the disk.
+ Vector3 pointOnPlane = rayOrigin + rayDir * planeIntersectionDistance;
+ if (pointOnPlane.GetDistance(diskCenter) < diskRadius)
+ {
+ t = planeIntersectionDistance;
+ return true;
+ }
}
+ return false;
}
- // Vector3 AP1 = (rayOrigin + tt1 * rayDir) - cylinderEnd1; // vector from cylinderEnd1 to the intersecting point of parameter tt1
- // float s1 = cylinderDir.Dot(AP1);
- float s1 = dcm + tt1 * dcdr;
-
- if (s1 < 0.0f) // intersecting point of parameter tt1 is outside on cylinderEnd1 side
+ // Reference: Real-Time Collision Detection - 5.3.7 Intersecting Ray or Segment Against Cylinder, and the book's errata.
+ int Intersect::IntersectRayCappedCylinder(
+ const Vector3& rayOrigin,
+ const Vector3& rayDir,
+ const Vector3& cylinderEnd1,
+ const Vector3& cylinderDir,
+ float cylinderHeight,
+ float cylinderRadius,
+ float& t1,
+ float& t2)
{
- if (s2 < 0.0f) // intersecting point of parameter tt2 is outside on cylinderEnd1 side
+ // dr = rayDir
+ // dc = cylinderDir
+ // r = cylinderRadius
+ // Vector3 cylinderEnd2 = cylinderEnd1 + cylinderHeight * cylinderDir;
+ Vector3 m = rayOrigin - cylinderEnd1; // vector from cylinderEnd1 to rayOrigin
+ float dcm = cylinderDir.Dot(m); // projection of m on cylinderDir
+ float dcdr = cylinderDir.Dot(rayDir); // projection of rayDir on cylinderDir
+ float drm = rayDir.Dot(m); // projection of m on rayDir
+ float r2 = cylinderRadius * cylinderRadius;
+
+ if (dcm < 0.0f && dcdr <= 0.0f)
{
- return 0;
+ return 0; // rayOrigin is outside cylinderEnd1 and rayDir is pointing away from cylinderEnd1
}
- else if (s2 == 0.0f) // ray touching the brim of the cylinderEnd1
+ if (dcm > cylinderHeight && dcdr >= 0.0f)
{
- t1 = tt2;
- return 1;
+ return 0; // rayOrigin is outside cylinderEnd2 and rayDir is pointing away from cylinderEnd2
}
- else
+
+ // point RP on the ray: RP(t) = rayOrigin + t * rayDir
+ // point CP on the cylinder surface: |(CP - cylinderEnd1) - cylinderDir.Dot(cp - cylinderEnd1) * cylinderDir|^2 = cylinderRadius^2
+ // substitute RP(t) for CP: a*t^2 + 2b*t + c = 0, solving for t = [-2b +/- sqrt(4b^2 - 4ac)] / 2a
+ float a = 1.0f - dcdr * dcdr; // always greater than or equal to 0
+ float b = drm - dcm * dcdr;
+ float c = m.Dot(m) - dcm * dcm - r2;
+
+ const float EPSILON = 0.00001f;
+
+ if (fabsf(a) < EPSILON) // the ray is parallel to the cylinder
{
- if (s2 > cylinderHeight) // intersecting point of parameter tt2 is outside on cylinderEnd2 side
+ if (c > EPSILON) // the ray is outside the cylinder
{
- // t2 can be computed from the equation: dot(rayOrigin + t2 * rayDir - cylinderEnd1, cylinderDir) = cylinderHeight
- t2 = (cylinderHeight - dcm) / dcdr;
+ return 0;
}
- else
+ else if (dcm < 0.0f) // the ray origin is on cylinderEnd1 side and ray is pointing to cylinderEnd2
{
- t2 = tt2;
+ t1 = -dcm;
+ t2 = -dcm + cylinderHeight;
+ return 2;
}
- if (dcm > 0.0f) // ray origin inside cylinder
+ else if (dcm > cylinderHeight) // the ray origin is on cylinderEnd2 side and ray is pointing to cylinderEnd1
{
- t1 = t2;
- return 1;
+ t1 = dcm - cylinderHeight;
+ t2 = dcm;
+ return 2;
}
- else
+ else // (dcm > 0.0f && dcm < cylinderHeight) // the ray origin is inside the cylinder
{
- // t1 can be computed from the equation: dot(rayOrigin + t1 * rayDir - cylinderEnd1, cylinderDir) = 0
- t1 = -dcm / dcdr;
- return 2;
+ if (dcdr > 0.0f) // the ray is pointing to cylinderEnd2
+ {
+ t1 = cylinderHeight - dcm;
+ return 1;
+ }
+ else if (dcdr < 0.0f) // the ray is pointing to cylinderEnd1
+ {
+ t2 = dcm;
+ return 1;
+ }
+ else // impossible in theory
+ {
+ return 0;
+ }
}
}
- }
- else if (s1 > cylinderHeight) // intersecting point of parameter tt1 is outside on cylinderEnd2 side
- {
- if (s2 > cylinderHeight) // intersecting point of parameter tt2 is outside on cylinderEnd2 side
+
+ float discr = b * b - a * c;
+ if (discr < 0.0f)
{
return 0;
}
- else if (s2 == cylinderHeight)
+
+ float sqrt_discr = sqrt(discr);
+ float tt1 = (-b - sqrt_discr) / a;
+ float tt2 = (-b + sqrt_discr) / a;
+
+ if (tt2 < 0.0f) // both intersections are behind the ray origin
{
- t1 = tt2;
- return 1;
+ return 0;
}
- else
+
+ // Vector3 AP2 = (rayOrigin + tt2 * rayDir) - cylinderEnd1; // vector from cylinderEnd1 to the intersecting point of parameter tt2
+ // float s2 = cylinderDir.Dot(AP2);
+ float s2 = dcm + tt2 * dcdr;
+
+ if (discr < EPSILON) // tt1 == tt2
{
- if (s2 < 0.0f)
+ if (s2 >= 0.0f && s2 <= cylinderHeight)
{
- t2 = -dcm / dcdr;
+ t1 = tt1;
+ return 1;
}
- else
+ }
+
+ // Vector3 AP1 = (rayOrigin + tt1 * rayDir) - cylinderEnd1; // vector from cylinderEnd1 to the intersecting point of parameter tt1
+ // float s1 = cylinderDir.Dot(AP1);
+ float s1 = dcm + tt1 * dcdr;
+
+ if (s1 < 0.0f) // intersecting point of parameter tt1 is outside on cylinderEnd1 side
+ {
+ if (s2 < 0.0f) // intersecting point of parameter tt2 is outside on cylinderEnd1 side
{
- t2 = tt2;
+ return 0;
}
- if (dcm < cylinderHeight)
+ else if (s2 == 0.0f) // ray touching the brim of the cylinderEnd1
{
- t1 = t2;
+ t1 = tt2;
return 1;
}
else
{
- t1 = (cylinderHeight - dcm) / dcdr;
- return 2;
- }
- }
- }
- else // intersecting point of parameter tt1 is in between two cylinder ends
- {
- if (s2 < 0.0f)
- {
- t2 = -dcm / dcdr;
- }
- else if (s2 > cylinderHeight)
- {
- t2 = (cylinderHeight - dcm) / dcdr;
- }
- else
- {
- t2 = tt2;
+ if (s2 > cylinderHeight) // intersecting point of parameter tt2 is outside on cylinderEnd2 side
+ {
+ // t2 can be computed from the equation: dot(rayOrigin + t2 * rayDir - cylinderEnd1, cylinderDir) = cylinderHeight
+ t2 = (cylinderHeight - dcm) / dcdr;
+ }
+ else
+ {
+ t2 = tt2;
+ }
+ if (dcm > 0.0f) // ray origin inside cylinder
+ {
+ t1 = t2;
+ return 1;
+ }
+ else
+ {
+ // t1 can be computed from the equation: dot(rayOrigin + t1 * rayDir - cylinderEnd1, cylinderDir) = 0
+ t1 = -dcm / dcdr;
+ return 2;
+ }
+ }
}
- if (tt1 > 0.0f)
+ else if (s1 > cylinderHeight) // intersecting point of parameter tt1 is outside on cylinderEnd2 side
{
- t1 = tt1;
- return 2;
+ if (s2 > cylinderHeight) // intersecting point of parameter tt2 is outside on cylinderEnd2 side
+ {
+ return 0;
+ }
+ else if (s2 == cylinderHeight)
+ {
+ t1 = tt2;
+ return 1;
+ }
+ else
+ {
+ if (s2 < 0.0f)
+ {
+ t2 = -dcm / dcdr;
+ }
+ else
+ {
+ t2 = tt2;
+ }
+ if (dcm < cylinderHeight)
+ {
+ t1 = t2;
+ return 1;
+ }
+ else
+ {
+ t1 = (cylinderHeight - dcm) / dcdr;
+ return 2;
+ }
+ }
}
- else
+ else // intersecting point of parameter tt1 is in between two cylinder ends
{
- t1 = t2;
- return 1;
+ if (s2 < 0.0f)
+ {
+ t2 = -dcm / dcdr;
+ }
+ else if (s2 > cylinderHeight)
+ {
+ t2 = (cylinderHeight - dcm) / dcdr;
+ }
+ else
+ {
+ t2 = tt2;
+ }
+ if (tt1 > 0.0f)
+ {
+ t1 = tt1;
+ return 2;
+ }
+ else
+ {
+ t1 = t2;
+ return 1;
+ }
}
}
-}
-int AZ::Intersect::IntersectRayCone(
- const Vector3& rayOrigin, const Vector3& rayDir,
- const Vector3& coneApex, const Vector3& coneDir, float coneHeight,
- float coneBaseRadius, float& t1, float& t2)
-{
- // Q = rayOrgin, A = coneApex
- Vector3 AQ = rayOrigin - coneApex;
- float m = coneDir.Dot(AQ); // projection of m on cylinderDir
- float k = coneDir.Dot(rayDir); // projection of rayDir on cylinderDir
-
- if (m < 0.0f && k <= 0.0f)
- {
- // rayOrigin is outside the cone on coneApex side and rayDir is pointing away
- return 0;
- }
- if (m > coneHeight && k >= 0.0f)
+ int Intersect::IntersectRayCone(
+ const Vector3& rayOrigin,
+ const Vector3& rayDir,
+ const Vector3& coneApex,
+ const Vector3& coneDir,
+ float coneHeight,
+ float coneBaseRadius,
+ float& t1,
+ float& t2)
{
- // rayOrigin is outside the cone on coneBase side and rayDir is pointing away
- return 0;
- }
-
- float r2 = coneBaseRadius * coneBaseRadius;
- float h2 = coneHeight * coneHeight;
+ // Q = rayOrgin, A = coneApex
+ Vector3 AQ = rayOrigin - coneApex;
+ float m = coneDir.Dot(AQ); // projection of m on cylinderDir
+ float k = coneDir.Dot(rayDir); // projection of rayDir on cylinderDir
- float m2 = m * m;
- float k2 = k * k;
- float q2 = AQ.Dot(AQ);
-
- float n = rayDir.Dot(AQ);
+ if (m < 0.0f && k <= 0.0f)
+ {
+ // rayOrigin is outside the cone on coneApex side and rayDir is pointing away
+ return 0;
+ }
+ if (m > coneHeight && k >= 0.0f)
+ {
+ // rayOrigin is outside the cone on coneBase side and rayDir is pointing away
+ return 0;
+ }
- const float EPSILON = 0.00001f;
+ float r2 = coneBaseRadius * coneBaseRadius;
+ float h2 = coneHeight * coneHeight;
- // point RP on the ray: RP(t) = rayOrigin + t * rayDir
- // point CP on the cone surface: similar triangle property
- // |dot(CP - A, coneDir) * coneDir| / coneHeight = |(CP - A) - (dot(CP - A, coneDir) * coneDir)| coneRadius
- // substitute RP(t) for CP: a*t^2 + 2b*t + c = 0, solving for t
- float a = (r2 + h2) * k2 - h2;
- float b = (r2 + h2) * m * k - h2 * n;
- float c = (r2 + h2) * m2 - h2 * q2;
+ float m2 = m * m;
+ float k2 = k * k;
+ float q2 = AQ.Dot(AQ);
- float discriminant = b * b - a * c;
- if (discriminant < -EPSILON)
- {
- return 0;
- }
- discriminant = AZ::GetMax(discriminant, 0.0f);
+ float n = rayDir.Dot(AQ);
- if (fabsf(a) < EPSILON) // the ray is parallel to the cone surface's tangent line
- {
- if (b < EPSILON && fabsf(c) < EPSILON) // ray overlapping with cone surface
- {
- t1 = rayDir.Dot(coneApex - rayOrigin);
- }
- else // ray has only one intersecting point with the cone
- {
- t1 = -c / (2 * b);
- }
+ const float EPSILON = 0.00001f;
- t2 = (coneHeight - m) / k; // t2 can be computed from the equation: dot(Q + t2 * rayDir - A, coneDir) = coneHeight
+ // point RP on the ray: RP(t) = rayOrigin + t * rayDir
+ // point CP on the cone surface: similar triangle property
+ // |dot(CP - A, coneDir) * coneDir| / coneHeight = |(CP - A) - (dot(CP - A, coneDir) * coneDir)| coneRadius
+ // substitute RP(t) for CP: a*t^2 + 2b*t + c = 0, solving for t
+ float a = (r2 + h2) * k2 - h2;
+ float b = (r2 + h2) * m * k - h2 * n;
+ float c = (r2 + h2) * m2 - h2 * q2;
- if (t1 < 0.0f && t2 < 0.0f)
+ float discriminant = b * b - a * c;
+ if (discriminant < -EPSILON)
{
return 0;
}
+ discriminant = AZ::GetMax(discriminant, 0.0f);
- if (fabsf(t1 - t2) < EPSILON) // the ray intersects the brim of the circumference of the cone base
+ if (fabsf(a) < EPSILON) // the ray is parallel to the cone surface's tangent line
{
- return 1;
- }
+ if (b < EPSILON && fabsf(c) < EPSILON) // ray overlapping with cone surface
+ {
+ t1 = rayDir.Dot(coneApex - rayOrigin);
+ }
+ else // ray has only one intersecting point with the cone
+ {
+ t1 = -c / (2 * b);
+ }
- float s1 = m + t1 * k; // coneDir.Dot(rayOrigin + t1 * rayDir - coneApex);
- if (s1 < 0.0f || s1 > coneHeight)
- {
- return 0;
- }
- else
- {
- if (k < 0.0f) // ray shooting from base to apex
+ t2 = (coneHeight - m) / k; // t2 can be computed from the equation: dot(Q + t2 * rayDir - A, coneDir) = coneHeight
+
+ if (t1 < 0.0f && t2 < 0.0f)
{
- if (m >= coneHeight) // ray origin outside cone
- {
- float temp = t1;
- t1 = t2;
- t2 = temp;
- return 2;
- }
- else if (t1 >= 0.0f) // ray origin inside cone
- {
- t1 = t2;
- return 1;
- }
- else
- {
- return 0;
- }
+ return 0;
+ }
+
+ if (fabsf(t1 - t2) < EPSILON) // the ray intersects the brim of the circumference of the cone base
+ {
+ return 1;
+ }
+
+ float s1 = m + t1 * k; // coneDir.Dot(rayOrigin + t1 * rayDir - coneApex);
+ if (s1 < 0.0f || s1 > coneHeight)
+ {
+ return 0;
}
else
{
- if (m > coneHeight)
- {
- return 0;
- }
- if (t1 >= 0.0f) // ray origin outside cone
+ if (k < 0.0f) // ray shooting from base to apex
{
- return 2;
+ if (m >= coneHeight) // ray origin outside cone
+ {
+ float temp = t1;
+ t1 = t2;
+ t2 = temp;
+ return 2;
+ }
+ else if (t1 >= 0.0f) // ray origin inside cone
+ {
+ t1 = t2;
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
}
else
{
- t1 = t2;
- return 1;
+ if (m > coneHeight)
+ {
+ return 0;
+ }
+ if (t1 >= 0.0f) // ray origin outside cone
+ {
+ return 2;
+ }
+ else
+ {
+ t1 = t2;
+ return 1;
+ }
}
}
}
- }
- if (discriminant < EPSILON) // two intersecting points coincide
- {
- if (fabsf(n * n - q2) < EPSILON) // the ray is through the apex
+ if (discriminant < EPSILON) // two intersecting points coincide
{
- float cosineA2 = h2 / (r2 + h2);
- float cosineAQ2 = cosineA2 * q2;
-
- if (m2 > cosineAQ2) // the ray origin is inside the cone or its mirroring counterpart
+ if (fabsf(n * n - q2) < EPSILON) // the ray is through the apex
{
- if (m <= 0.0f) // the ray origin outside the cone on the apex side, shooting towards the base
- {
- t1 = -b / a;
- t2 = (coneHeight - m) / k;
- return 2;
- }
- else if (m >= coneHeight) // the ray origin is outside the cone on the base side, shooting towards towards the apex
+ float cosineA2 = h2 / (r2 + h2);
+ float cosineAQ2 = cosineA2 * q2;
+
+ if (m2 > cosineAQ2) // the ray origin is inside the cone or its mirroring counterpart
{
- t1 = (coneHeight - m) / k;
- t2 = -b / a;
- return 2;
+ if (m <= 0.0f) // the ray origin outside the cone on the apex side, shooting towards the base
+ {
+ t1 = -b / a;
+ t2 = (coneHeight - m) / k;
+ return 2;
+ }
+ else if (m >= coneHeight) // the ray origin is outside the cone on the base side, shooting towards towards the apex
+ {
+ t1 = (coneHeight - m) / k;
+ t2 = -b / a;
+ return 2;
+ }
+ else
+ {
+ if (k > 0.0f) // the ray origin is inside the cone, shooting towards the base
+ {
+ t1 = (coneHeight - m) / k;
+ return 1;
+ }
+ else // the ray origin is inside the cone, shooting towards the apex
+ {
+ t1 = -b / a;
+ return 1;
+ }
+ }
}
- else
+ else // the ray origin is outside the cone
{
- if (k > 0.0f) // the ray origin is inside the cone, shooting towards the base
+ t1 = -b / a;
+ if (t1 > 0.0f)
{
- t1 = (coneHeight - m) / k;
return 1;
}
- else // the ray origin is inside the cone, shooting towards the apex
+ else
{
- t1 = -b / a;
- return 1;
+ return 0;
}
}
}
- else // the ray origin is outside the cone
+ else // the ray is touching the cone surface but not through the apex
{
t1 = -b / a;
if (t1 > 0.0f)
{
- return 1;
- }
- else
- {
- return 0;
- }
- }
- }
- else // the ray is touching the cone surface but not through the apex
- {
- t1 = -b / a;
- if (t1 > 0.0f)
- {
- float s1 = m + t1 * k; // projection length of the line segment from the apex to intersection_t1 onto the coneDir
- if (s1 >= 0.0f && s1 <= coneHeight)
- {
- return 1;
+ float s1 = m + t1 * k; // projection length of the line segment from the apex to intersection_t1 onto the coneDir
+ if (s1 >= 0.0f && s1 <= coneHeight)
+ {
+ return 1;
+ }
}
+ return 0;
}
- return 0;
}
- }
-
- float sqrtDiscr = sqrt(discriminant);
- float tt1 = (-b - sqrtDiscr) / a;
- float tt2 = (-b + sqrtDiscr) / a;
- /* Test s1 and s2 to see the positions of the intersecting points relative to the cylinder's two ends. */
+ float sqrtDiscr = sqrt(discriminant);
+ float tt1 = (-b - sqrtDiscr) / a;
+ float tt2 = (-b + sqrtDiscr) / a;
- // s1 = coneDir.Dot(rayOrigin + tt1 * rayDir - coneApex), which expands into the following
- float s1 = m + tt1 * k;
- // s2 = coneDir.Dot(rayOrigin + tt2 * rayDir - coneApex), which expands into the following
- float s2 = m + tt2 * k;
+ /* Test s1 and s2 to see the positions of the intersecting points relative to the cylinder's two ends. */
- if (s1 < 0.0f)
- {
- if (s2 < 0.0f || s2 > coneHeight)
- {
- return 0;
- }
- else
+ // s1 = coneDir.Dot(rayOrigin + tt1 * rayDir - coneApex), which expands into the following
+ float s1 = m + tt1 * k;
+ // s2 = coneDir.Dot(rayOrigin + tt2 * rayDir - coneApex), which expands into the following
+ float s2 = m + tt2 * k;
+
+ if (s1 < 0.0f)
{
- if (tt2 >= 0.0f) // ray origin outside cone
- {
- t1 = tt2;
- t2 = (coneHeight - m) / k;
- return 2;
- }
- else if (m > coneHeight) // ray origin outside cone on the base side, the
+ if (s2 < 0.0f || s2 > coneHeight)
{
return 0;
}
else
{
- t1 = (coneHeight - m) / k;
- return 1;
- }
- }
- }
- else if (s1 > coneHeight)
- {
- if (s2 < 0.0f || s2 > coneHeight )
- {
- return 0;
- }
- else
- {
- if (tt2 < 0.0f)
- {
- return 0;
- }
- else if (m >= coneHeight)
- {
- t1 = (coneHeight - m) / k;
- t2 = tt2;
- return 2;
- }
- else // ray origin inside cone
- {
- t1 = tt2;
- return 1;
+ if (tt2 >= 0.0f) // ray origin outside cone
+ {
+ t1 = tt2;
+ t2 = (coneHeight - m) / k;
+ return 2;
+ }
+ else if (m > coneHeight) // ray origin outside cone on the base side, the
+ {
+ return 0;
+ }
+ else
+ {
+ t1 = (coneHeight - m) / k;
+ return 1;
+ }
}
}
- }
- else
- {
- if (s2 < 0.0f)
+ else if (s1 > coneHeight)
{
- if (m >= coneHeight)
- {
- t1 = (coneHeight - m) / k;
- t2 = tt1;
- return 2;
- }
- else if (tt1 >= 0.0f) // ray origin inside cone
- {
- t1 = tt1;
- return 1;
- }
- else
+ if (s2 < 0.0f || s2 > coneHeight)
{
return 0;
}
- }
- else if (s2 > coneHeight)
- {
- if (tt1 >= 0.0f)
- {
- t1 = tt1;
- t2 = (coneHeight - m) / k;
- return 2;
- }
- else if (m <= coneHeight)
- {
- t1 = (coneHeight - m) / k;
- return 1;
- }
else
{
- return 0;
+ if (tt2 < 0.0f)
+ {
+ return 0;
+ }
+ else if (m >= coneHeight)
+ {
+ t1 = (coneHeight - m) / k;
+ t2 = tt2;
+ return 2;
+ }
+ else // ray origin inside cone
+ {
+ t1 = tt2;
+ return 1;
+ }
}
}
else
{
- if (tt1 >= 0.0f)
+ if (s2 < 0.0f)
{
- t1 = tt1;
- t2 = tt2;
- return 2;
+ if (m >= coneHeight)
+ {
+ t1 = (coneHeight - m) / k;
+ t2 = tt1;
+ return 2;
+ }
+ else if (tt1 >= 0.0f) // ray origin inside cone
+ {
+ t1 = tt1;
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
}
- else if (tt2 >= 0.0f)
+ else if (s2 > coneHeight)
{
- t1 = tt2;
- return 1;
+ if (tt1 >= 0.0f)
+ {
+ t1 = tt1;
+ t2 = (coneHeight - m) / k;
+ return 2;
+ }
+ else if (m <= coneHeight)
+ {
+ t1 = (coneHeight - m) / k;
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
}
else
{
- return 0;
- }
- }
- }
-}
-
-int AZ::Intersect::IntersectRayPlane(const Vector3& rayOrigin, const Vector3& rayDir, const Vector3& planePos, const Vector3& planeNormal, float& t)
-{
- // (rayOrigin + t * rayDir - planePos).dot(planeNormal) = 0
-
- const float EPSILON = 0.00001f;
-
- float n = rayDir.Dot(planeNormal);
- if (fabsf(n) < EPSILON)
- {
- return 0;
- }
-
- t = planeNormal.Dot(planePos - rayOrigin) / n;
- if (t < 0.0f)
- {
- return 0;
- }
- else
- {
- return 1;
- }
-}
-
-int AZ::Intersect::IntersectRayQuad(
- const Vector3& rayOrigin, const Vector3& rayDir, const Vector3& vertexA,
- const Vector3& vertexB, const Vector3& vertexC, const Vector3& vertexD, float& t)
-{
- const float EPSILON = 0.0001f;
-
- Vector3 AC = vertexC - vertexA;
- Vector3 AB = vertexB - vertexA;
- Vector3 QA = vertexA - rayOrigin;
-
- Vector3 triN = AB.Cross(AC); // the normal of the triangle ABC
- float dn = rayDir.Dot(triN);
-
- // Early-out if ray is facing away from ABC triangle
- if (dn * triN.Dot(QA) < 0)
- {
- return 0;
- }
-
- Vector3 E = rayDir.Cross(QA);
- float dnAbs = 0.0f;
-
- if (dn < -EPSILON) // vertices have counter-clock wise winding when looking at the quad from rayOrigin
- {
- dnAbs = -dn;
- }
- else if (dn > EPSILON)
- {
- E = -E;
- dnAbs = dn;
- }
- else // the ray is parallel to the quad plane
- {
- return 0;
- }
-
- // compute barycentric coordinates
- float v = E.Dot(AC);
-
- if (v >= 0.0f && v < dnAbs)
- {
- float w = -E.Dot(AB);
- if (w < 0.0f || v + w > dnAbs)
- {
- return 0;
- }
- }
- else if (v < 0.0f && v > -dnAbs)
- {
- Vector3 DA = vertexA - vertexD;
- float w = E.Dot(DA);
- if (w > 0.0f || v + w < -dnAbs) // v, w are negative
- {
- return 0;
- }
- }
- else
- {
- return 0;
- }
-
- t = triN.Dot(QA) / dn;
- return 1;
-}
-
-// reference: Real-Time Collision Detection, 5.3.3 Intersecting Ray or Segment Against Box
-bool AZ::Intersect::IntersectRayBox(
- const Vector3& rayOrigin, const Vector3& rayDir, const Vector3& boxCenter, const Vector3& boxAxis1,
- const Vector3& boxAxis2, const Vector3& boxAxis3, float boxHalfExtent1, float boxHalfExtent2, float boxHalfExtent3, float& t)
-{
- const float EPSILON = 0.00001f;
-
- float tmin = 0.0f; // the nearest to the ray origin
- float tmax = AZ::Constants::FloatMax; // the farthest from the ray origin
-
- Vector3 P = boxCenter - rayOrigin; // precomputed variable for calculating the vector from rayOrigin to a point on each box facet
- Vector3 QAp; // vector from rayOrigin to the center of the facet of boxAxis
- Vector3 QAn; // vector from rayOrigin to the center of the facet of -boxAxis
- float tp = 0.0f;
- float tn = 0.0f;
- bool isRayOriginInsideBox = true;
-
- /* Test the slab_1 formed by the planes with normals boxAxis1 and -boxAxis1. */
-
- Vector3 axis1 = boxHalfExtent1 * boxAxis1;
-
- QAp = P + axis1;
- tp = QAp.Dot(boxAxis1);
-
- QAn = P - axis1;
- tn = -QAn.Dot(boxAxis1);
-
- float n = rayDir.Dot(boxAxis1);
- if (fabsf(n) < EPSILON)
- {
- // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
- if (tp < 0.0f || tn < 0.0f)
- {
- return false;
+ if (tt1 >= 0.0f)
+ {
+ t1 = tt1;
+ t2 = tt2;
+ return 2;
+ }
+ else if (tt2 >= 0.0f)
+ {
+ t1 = tt2;
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
+ }
}
}
- else
+
+ int Intersect::IntersectRayPlane(
+ const Vector3& rayOrigin, const Vector3& rayDir, const Vector3& planePos, const Vector3& planeNormal, float& t)
{
- if (tp < 0.0f || tn < 0.0f)
+ // (rayOrigin + t * rayDir - planePos).dot(planeNormal) = 0
+
+ const float EPSILON = 0.00001f;
+
+ float n = rayDir.Dot(planeNormal);
+ if (fabsf(n) < EPSILON)
{
- isRayOriginInsideBox = false;
+ return 0;
}
- float div = 1.0f / n;
- float t1 = tp * div;
- float t2 = tn * (-div);
- if (t1 > t2)
+ t = planeNormal.Dot(planePos - rayOrigin) / n;
+ if (t < 0.0f)
{
- AZStd::swap(t1, t2);
+ return 0;
}
- tmin = AZ::GetMax(tmin, t1);
- tmax = AZ::GetMin(tmax, t2);
- if (tmin > tmax)
+ else
{
- return false;
+ return 1;
}
}
- /* test the slab_2 formed by plane with normals boxAxis2 and -boxAxis2 */
+ int Intersect::IntersectRayQuad(
+ const Vector3& rayOrigin,
+ const Vector3& rayDir,
+ const Vector3& vertexA,
+ const Vector3& vertexB,
+ const Vector3& vertexC,
+ const Vector3& vertexD,
+ float& t)
+ {
+ const float EPSILON = 0.0001f;
+
+ Vector3 AC = vertexC - vertexA;
+ Vector3 AB = vertexB - vertexA;
+ Vector3 QA = vertexA - rayOrigin;
- Vector3 axis2 = boxHalfExtent2 * boxAxis2;
+ Vector3 triN = AB.Cross(AC); // the normal of the triangle ABC
+ float dn = rayDir.Dot(triN);
- QAp = P + axis2;
- tp = QAp.Dot(boxAxis2);
+ // Early-out if ray is facing away from ABC triangle
+ if (dn * triN.Dot(QA) < 0)
+ {
+ return 0;
+ }
- QAn = P - axis2;
- tn = -QAn.Dot(boxAxis2);
+ Vector3 E = rayDir.Cross(QA);
+ float dnAbs = 0.0f;
- n = rayDir.Dot(boxAxis2);
- if (fabsf(n) < EPSILON)
- {
- // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
- if (tp < 0.0f || tn < 0.0f)
+ if (dn < -EPSILON) // vertices have counter-clock wise winding when looking at the quad from rayOrigin
{
- return false;
+ dnAbs = -dn;
}
- }
- else
- {
- if (tp < 0.0f || tn < 0.0f)
+ else if (dn > EPSILON)
+ {
+ E = -E;
+ dnAbs = dn;
+ }
+ else // the ray is parallel to the quad plane
{
- isRayOriginInsideBox = false;
+ return 0;
}
- float div = 1.0f / n;
- float t1 = tp * div;
- float t2 = tn * (-div);
- if (t1 > t2)
+ // compute barycentric coordinates
+ float v = E.Dot(AC);
+
+ if (v >= 0.0f && v < dnAbs)
{
- AZStd::swap(t1, t2);
+ float w = -E.Dot(AB);
+ if (w < 0.0f || v + w > dnAbs)
+ {
+ return 0;
+ }
}
- tmin = AZ::GetMax(tmin, t1);
- tmax = AZ::GetMin(tmax, t2);
- if (tmin > tmax)
+ else if (v < 0.0f && v > -dnAbs)
{
- return false;
+ Vector3 DA = vertexA - vertexD;
+ float w = E.Dot(DA);
+ if (w > 0.0f || v + w < -dnAbs) // v, w are negative
+ {
+ return 0;
+ }
}
+ else
+ {
+ return 0;
+ }
+
+ t = triN.Dot(QA) / dn;
+ return 1;
}
- /* test the slab_3 formed by plane with normals boxAxis3 and -boxAxis3 */
+ // reference: Real-Time Collision Detection, 5.3.3 Intersecting Ray or Segment Against Box
+ bool Intersect::IntersectRayBox(
+ const Vector3& rayOrigin,
+ const Vector3& rayDir,
+ const Vector3& boxCenter,
+ const Vector3& boxAxis1,
+ const Vector3& boxAxis2,
+ const Vector3& boxAxis3,
+ float boxHalfExtent1,
+ float boxHalfExtent2,
+ float boxHalfExtent3,
+ float& t)
+ {
+ const float EPSILON = 0.00001f;
- Vector3 axis3 = boxHalfExtent3 * boxAxis3;
+ float tmin = 0.0f; // the nearest to the ray origin
+ float tmax = AZ::Constants::FloatMax; // the farthest from the ray origin
- QAp = P + axis3;
- tp = QAp.Dot(boxAxis3);
+ Vector3 P = boxCenter - rayOrigin; // precomputed variable for calculating the vector from rayOrigin to a point on each box facet
+ Vector3 QAp; // vector from rayOrigin to the center of the facet of boxAxis
+ Vector3 QAn; // vector from rayOrigin to the center of the facet of -boxAxis
+ float tp = 0.0f;
+ float tn = 0.0f;
+ bool isRayOriginInsideBox = true;
- QAn = P - axis3;
- tn = -QAn.Dot(boxAxis3);
+ /* Test the slab_1 formed by the planes with normals boxAxis1 and -boxAxis1. */
- n = rayDir.Dot(boxAxis3);
- if (fabsf(n) < EPSILON)
- {
- // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
- if (tp < 0.0f || tn < 0.0f)
- {
- return false;
- }
- }
- else
- {
- if (tp < 0.0f || tn < 0.0f)
- {
- isRayOriginInsideBox = false;
- }
+ Vector3 axis1 = boxHalfExtent1 * boxAxis1;
+
+ QAp = P + axis1;
+ tp = QAp.Dot(boxAxis1);
- float div = 1.0f / n;
- float t1 = tp * div;
- float t2 = tn * (-div);
- if (t1 > t2)
+ QAn = P - axis1;
+ tn = -QAn.Dot(boxAxis1);
+
+ float n = rayDir.Dot(boxAxis1);
+ if (fabsf(n) < EPSILON)
{
- AZStd::swap(t1, t2);
+ // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ return false;
+ }
}
- tmin = AZ::GetMax(tmin, t1);
- tmax = AZ::GetMin(tmax, t2);
- if (tmin > tmax)
+ else
{
- return false;
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ isRayOriginInsideBox = false;
+ }
+
+ float div = 1.0f / n;
+ float t1 = tp * div;
+ float t2 = tn * (-div);
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ }
+ tmin = AZ::GetMax(tmin, t1);
+ tmax = AZ::GetMin(tmax, t2);
+ if (tmin > tmax)
+ {
+ return false;
+ }
}
- }
- t = (isRayOriginInsideBox ? tmax : tmin);
- return true;
-}
+ /* test the slab_2 formed by plane with normals boxAxis2 and -boxAxis2 */
-bool AZ::Intersect::IntersectRayObb(const Vector3& rayOrigin, const Vector3& rayDir, const Obb& obb, float& t)
-{
- return AZ::Intersect::IntersectRayBox(rayOrigin, rayDir, obb.GetPosition(),
- obb.GetAxisX(), obb.GetAxisY(), obb.GetAxisZ(),
- obb.GetHalfLengthX(), obb.GetHalfLengthY(), obb.GetHalfLengthZ(), t);
-}
+ Vector3 axis2 = boxHalfExtent2 * boxAxis2;
-//=========================================================================
-// IntersectSegmentCylinder
-// [10/21/2009]
-//=========================================================================
-CylinderIsectTypes
-AZ::Intersect::IntersectSegmentCylinder(
- const Vector3& sa, const Vector3& dir, const Vector3& p, const Vector3& q, const float r, float& t)
-{
- const float epsilon = 0.001f;
- Vector3 d = q - p; // can be cached
- Vector3 m = sa - p; // -"-
- Vector3 n = /*sb - sa*/ dir; // -"-
+ QAp = P + axis2;
+ tp = QAp.Dot(boxAxis2);
- float md = m.Dot(d);
- float nd = n.Dot(d);
- float dd = d.Dot(d);
+ QAn = P - axis2;
+ tn = -QAn.Dot(boxAxis2);
- // Test if segment fully outside either endcap of cylinder
- if (md < 0.0f && md + nd < 0.0f)
- {
- return RR_ISECT_RAY_CYL_NONE; // Segment outside 'p' side of cylinder
- }
- if (md > dd && md + nd > dd)
- {
- return RR_ISECT_RAY_CYL_NONE; // Segment outside 'q' side of cylinder
- }
- float nn = n.Dot(n);
- float mn = m.Dot(n);
- float a = dd * nn - nd * nd;
- float k = m.Dot(m) - r * r;
- float c = dd * k - md * md;
- if (std::fabs(a) < epsilon)
- {
- // Segment runs parallel to cylinder axis
- if (c > 0.0f)
+ n = rayDir.Dot(boxAxis2);
+ if (fabsf(n) < EPSILON)
{
- return RR_ISECT_RAY_CYL_NONE; // 'a' and thus the segment lie outside cylinder
+ // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ return false;
+ }
}
- // Now known that segment intersects cylinder; figure out how it intersects
- if (md < 0.0f)
+ else
{
- t = -mn / nn; // Intersect segment against 'p' endcap
- return RR_ISECT_RAY_CYL_P_SIDE;
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ isRayOriginInsideBox = false;
+ }
+
+ float div = 1.0f / n;
+ float t1 = tp * div;
+ float t2 = tn * (-div);
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ }
+ tmin = AZ::GetMax(tmin, t1);
+ tmax = AZ::GetMin(tmax, t2);
+ if (tmin > tmax)
+ {
+ return false;
+ }
}
- else if (md > dd)
+
+ /* test the slab_3 formed by plane with normals boxAxis3 and -boxAxis3 */
+
+ Vector3 axis3 = boxHalfExtent3 * boxAxis3;
+
+ QAp = P + axis3;
+ tp = QAp.Dot(boxAxis3);
+
+ QAn = P - axis3;
+ tn = -QAn.Dot(boxAxis3);
+
+ n = rayDir.Dot(boxAxis3);
+ if (fabsf(n) < EPSILON)
{
- t = (nd - mn) / nn; // Intersect segment against 'q' endcap
- return RR_ISECT_RAY_CYL_Q_SIDE;
+ // If the ray is parallel to the slab and the ray origin is outside, return no intersection.
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ return false;
+ }
}
else
{
- // 'a' lies inside cylinder
- t = 0.0f;
- return RR_ISECT_RAY_CYL_SA_INSIDE;
+ if (tp < 0.0f || tn < 0.0f)
+ {
+ isRayOriginInsideBox = false;
+ }
+
+ float div = 1.0f / n;
+ float t1 = tp * div;
+ float t2 = tn * (-div);
+ if (t1 > t2)
+ {
+ AZStd::swap(t1, t2);
+ }
+ tmin = AZ::GetMax(tmin, t1);
+ tmax = AZ::GetMin(tmax, t2);
+ if (tmin > tmax)
+ {
+ return false;
+ }
}
+
+ t = (isRayOriginInsideBox ? tmax : tmin);
+ return true;
}
- float b = dd * mn - nd * md;
- float discr = b * b - a * c;
- if (discr < 0.0f)
+
+ bool Intersect::IntersectRayObb(const Vector3& rayOrigin, const Vector3& rayDir, const Obb& obb, float& t)
{
- return RR_ISECT_RAY_CYL_NONE; // No real roots; no intersection
+ return Intersect::IntersectRayBox(
+ rayOrigin, rayDir, obb.GetPosition(), obb.GetAxisX(), obb.GetAxisY(), obb.GetAxisZ(), obb.GetHalfLengthX(),
+ obb.GetHalfLengthY(), obb.GetHalfLengthZ(), t);
}
- t = (-b - Sqrt(discr)) / a;
- CylinderIsectTypes result = RR_ISECT_RAY_CYL_PQ; // default along the PQ segment
- if (md + t * nd < 0.0f)
+ //=========================================================================
+ // IntersectSegmentCylinder
+ // [10/21/2009]
+ //=========================================================================
+ Intersect::CylinderIsectTypes Intersect::IntersectSegmentCylinder(
+ const Vector3& sa, const Vector3& dir, const Vector3& p, const Vector3& q, const float r, float& t)
{
- // Intersection outside cylinder on 'p' side
- if (nd <= 0.0f)
+ const float epsilon = 0.001f;
+ Vector3 d = q - p; // can be cached
+ Vector3 m = sa - p; // -"-
+ Vector3 n = /*sb - sa*/ dir; // -"-
+
+ float md = m.Dot(d);
+ float nd = n.Dot(d);
+ float dd = d.Dot(d);
+
+ // Test if segment fully outside either endcap of cylinder
+ if (md < 0.0f && md + nd < 0.0f)
{
- return RR_ISECT_RAY_CYL_NONE; // Segment pointing away from endcap
+ return RR_ISECT_RAY_CYL_NONE; // Segment outside 'p' side of cylinder
}
- float t0 = -md / nd;
- // Keep intersection if Dot(S(t) - p, S(t) - p) <= r^2
- if (k + t0 * (2.0f * mn + t0 * nn) <= 0.0f)
+ if (md > dd && md + nd > dd)
{
- // if( t0 < 0.0f ) t0 = 0.0f; // it's inside the cylinder
- t = t0;
- result = RR_ISECT_RAY_CYL_P_SIDE;
+ return RR_ISECT_RAY_CYL_NONE; // Segment outside 'q' side of cylinder
}
- else
+ float nn = n.Dot(n);
+ float mn = m.Dot(n);
+ float a = dd * nn - nd * nd;
+ float k = m.Dot(m) - r * r;
+ float c = dd * k - md * md;
+ if (std::fabs(a) < epsilon)
{
- return RR_ISECT_RAY_CYL_NONE;
+ // Segment runs parallel to cylinder axis
+ if (c > 0.0f)
+ {
+ return RR_ISECT_RAY_CYL_NONE; // 'a' and thus the segment lie outside cylinder
+ }
+ // Now known that segment intersects cylinder; figure out how it intersects
+ if (md < 0.0f)
+ {
+ t = -mn / nn; // Intersect segment against 'p' endcap
+ return RR_ISECT_RAY_CYL_P_SIDE;
+ }
+ else if (md > dd)
+ {
+ t = (nd - mn) / nn; // Intersect segment against 'q' endcap
+ return RR_ISECT_RAY_CYL_Q_SIDE;
+ }
+ else
+ {
+ // 'a' lies inside cylinder
+ t = 0.0f;
+ return RR_ISECT_RAY_CYL_SA_INSIDE;
+ }
}
- }
- else if (md + t * nd > dd)
- {
- // Intersection outside cylinder on 'q' side
- if (nd >= 0.0f)
+ float b = dd * mn - nd * md;
+ float discr = b * b - a * c;
+ if (discr < 0.0f)
{
- return RR_ISECT_RAY_CYL_NONE; // Segment pointing away from endcap
+ return RR_ISECT_RAY_CYL_NONE; // No real roots; no intersection
}
- float t0 = (dd - md) / nd;
- // Keep intersection if Dot(S(t) - q, S(t) - q) <= r^2
- if (k + dd - 2.0f * md + t0 * (2.0f * (mn - nd) + t0 * nn) <= 0.0f)
+ t = (-b - Sqrt(discr)) / a;
+ CylinderIsectTypes result = RR_ISECT_RAY_CYL_PQ; // default along the PQ segment
+
+ if (md + t * nd < 0.0f)
{
- // if( t0 < 0.0f ) t0 = 0.0f; // it's inside the cylinder
- t = t0;
- result = RR_ISECT_RAY_CYL_Q_SIDE;
+ // Intersection outside cylinder on 'p' side
+ if (nd <= 0.0f)
+ {
+ return RR_ISECT_RAY_CYL_NONE; // Segment pointing away from endcap
+ }
+ float t0 = -md / nd;
+ // Keep intersection if Dot(S(t) - p, S(t) - p) <= r^2
+ if (k + t0 * (2.0f * mn + t0 * nn) <= 0.0f)
+ {
+ // if( t0 < 0.0f ) t0 = 0.0f; // it's inside the cylinder
+ t = t0;
+ result = RR_ISECT_RAY_CYL_P_SIDE;
+ }
+ else
+ {
+ return RR_ISECT_RAY_CYL_NONE;
+ }
}
- else
+ else if (md + t * nd > dd)
{
- return RR_ISECT_RAY_CYL_NONE;
+ // Intersection outside cylinder on 'q' side
+ if (nd >= 0.0f)
+ {
+ return RR_ISECT_RAY_CYL_NONE; // Segment pointing away from endcap
+ }
+ float t0 = (dd - md) / nd;
+ // Keep intersection if Dot(S(t) - q, S(t) - q) <= r^2
+ if (k + dd - 2.0f * md + t0 * (2.0f * (mn - nd) + t0 * nn) <= 0.0f)
+ {
+ // if( t0 < 0.0f ) t0 = 0.0f; // it's inside the cylinder
+ t = t0;
+ result = RR_ISECT_RAY_CYL_Q_SIDE;
+ }
+ else
+ {
+ return RR_ISECT_RAY_CYL_NONE;
+ }
}
- }
- // Segment intersects cylinder between the end-caps; t is correct
- if (t > 1.0f)
- {
- return RR_ISECT_RAY_CYL_NONE; // Intersection lies outside segment
- }
- else if (t < 0.0f)
- {
- if (c <= 0.0f)
- {
- t = 0.0f;
- return RR_ISECT_RAY_CYL_SA_INSIDE; // Segment starts inside
- }
- else
+ // Segment intersects cylinder between the end-caps; t is correct
+ if (t > 1.0f)
{
return RR_ISECT_RAY_CYL_NONE; // Intersection lies outside segment
}
- }
- else
- {
- return result;
- }
-}
-//=========================================================================
-// IntersectSegmentCapsule
-// [10/21/2009]
-//=========================================================================
-CapsuleIsectTypes
-AZ::Intersect::IntersectSegmentCapsule(const Vector3& sa, const Vector3& dir, const Vector3& p, const Vector3& q, const float r, float& t)
-{
- int result = IntersectSegmentCylinder(sa, dir, p, q, r, t);
-
- if (result == RR_ISECT_RAY_CYL_SA_INSIDE)
- {
- return ISECT_RAY_CAPSULE_SA_INSIDE;
- }
-
- if (result == RR_ISECT_RAY_CYL_PQ)
- {
- return ISECT_RAY_CAPSULE_PQ;
- }
-
- Vector3 dirNorm = dir;
- float len = dirNorm.NormalizeWithLength();
-
- // check spheres
- float timeLenTop, timeLenBottom;
- int resultTop = IntersectRaySphere(sa, dirNorm, p, r, timeLenTop);
- if (resultTop == ISECT_RAY_SPHERE_SA_INSIDE)
- {
- return ISECT_RAY_CAPSULE_SA_INSIDE;
- }
- int resultBottom = IntersectRaySphere(sa, dirNorm, q, r, timeLenBottom);
- if (resultBottom == ISECT_RAY_SPHERE_SA_INSIDE)
- {
- return ISECT_RAY_CAPSULE_SA_INSIDE;
- }
-
- if (resultTop == ISECT_RAY_SPHERE_ISECT)
- {
- if (resultBottom == ISECT_RAY_SPHERE_ISECT)
+ else if (t < 0.0f)
{
- // if we intersect both spheres pick the closest one
- if (timeLenTop < timeLenBottom)
+ if (c <= 0.0f)
{
- t = timeLenTop / len;
- return ISECT_RAY_CAPSULE_P_SIDE;
+ t = 0.0f;
+ return RR_ISECT_RAY_CYL_SA_INSIDE; // Segment starts inside
}
else
{
- t = timeLenBottom / len;
- return ISECT_RAY_CAPSULE_Q_SIDE;
+ return RR_ISECT_RAY_CYL_NONE; // Intersection lies outside segment
}
}
else
{
- t = timeLenTop / len;
- return ISECT_RAY_CAPSULE_P_SIDE;
+ return result;
}
}
-
- if (resultBottom == ISECT_RAY_SPHERE_ISECT)
+ //=========================================================================
+ // IntersectSegmentCapsule
+ // [10/21/2009]
+ //=========================================================================
+ Intersect::CapsuleIsectTypes Intersect::IntersectSegmentCapsule(
+ const Vector3& sa, const Vector3& dir, const Vector3& p, const Vector3& q, const float r, float& t)
{
- t = timeLenBottom / len;
- return ISECT_RAY_CAPSULE_Q_SIDE;
- }
+ int result = IntersectSegmentCylinder(sa, dir, p, q, r, t);
- return ISECT_RAY_CAPSULE_NONE;
-}
+ if (result == RR_ISECT_RAY_CYL_SA_INSIDE)
+ {
+ return ISECT_RAY_CAPSULE_SA_INSIDE;
+ }
-//=========================================================================
-// IntersectSegmentPolyhedron
-// [10/21/2009]
-//=========================================================================
-bool
-AZ::Intersect::IntersectSegmentPolyhedron(
- const Vector3& sa, const Vector3& dir, const Plane p[], int numPlanes,
- float& tfirst, float& tlast, int& iFirstPlane, int& iLastPlane)
-{
- // Compute direction vector for the segment
- Vector3 d = /*b - a*/ dir;
- // Set initial interval to being the whole segment. For a ray, tlast should be
- // set to +RR_FLT_MAX. For a line, additionally tfirst should be set to -RR_FLT_MAX
- tfirst = 0.0f;
- tlast = 1.0f;
- iFirstPlane = -1;
- iLastPlane = -1;
- // Intersect segment against each plane
- for (int i = 0; i < numPlanes; i++)
- {
- const Vector4& plane = p[i].GetPlaneEquationCoefficients();
+ if (result == RR_ISECT_RAY_CYL_PQ)
+ {
+ return ISECT_RAY_CAPSULE_PQ;
+ }
- float denom = plane.Dot3(d);
- // don't forget we store -D in the plane
- float dist = (-plane.GetW()) - plane.Dot3(sa);
- // Test if segment runs parallel to the plane
- if (denom == 0.0f)
+ Vector3 dirNorm = dir;
+ float len = dirNorm.NormalizeWithLength();
+
+ // check spheres
+ float timeLenTop, timeLenBottom;
+ int resultTop = IntersectRaySphere(sa, dirNorm, p, r, timeLenTop);
+ if (resultTop == ISECT_RAY_SPHERE_SA_INSIDE)
{
- // If so, return "no intersection" if segment lies outside plane
- if (dist < 0.0f)
- {
- return false;
- }
+ return ISECT_RAY_CAPSULE_SA_INSIDE;
}
- else
+ int resultBottom = IntersectRaySphere(sa, dirNorm, q, r, timeLenBottom);
+ if (resultBottom == ISECT_RAY_SPHERE_SA_INSIDE)
+ {
+ return ISECT_RAY_CAPSULE_SA_INSIDE;
+ }
+
+ if (resultTop == ISECT_RAY_SPHERE_ISECT)
{
- // Compute parameterized t value for intersection with current plane
- float t = dist / denom;
- if (denom < 0.0f)
+ if (resultBottom == ISECT_RAY_SPHERE_ISECT)
{
- // When entering half space, update tfirst if t is larger
- if (t > tfirst)
+ // if we intersect both spheres pick the closest one
+ if (timeLenTop < timeLenBottom)
+ {
+ t = timeLenTop / len;
+ return ISECT_RAY_CAPSULE_P_SIDE;
+ }
+ else
{
- tfirst = t;
- iFirstPlane = i;
+ t = timeLenBottom / len;
+ return ISECT_RAY_CAPSULE_Q_SIDE;
}
}
else
{
- // When exiting half space, update tlast if t is smaller
- if (t < tlast)
+ t = timeLenTop / len;
+ return ISECT_RAY_CAPSULE_P_SIDE;
+ }
+ }
+
+ if (resultBottom == ISECT_RAY_SPHERE_ISECT)
+ {
+ t = timeLenBottom / len;
+ return ISECT_RAY_CAPSULE_Q_SIDE;
+ }
+
+ return ISECT_RAY_CAPSULE_NONE;
+ }
+
+ //=========================================================================
+ // IntersectSegmentPolyhedron
+ // [10/21/2009]
+ //=========================================================================
+ bool Intersect::IntersectSegmentPolyhedron(
+ const Vector3& sa,
+ const Vector3& dir,
+ const Plane p[],
+ int numPlanes,
+ float& tfirst,
+ float& tlast,
+ int& iFirstPlane,
+ int& iLastPlane)
+ {
+ // Compute direction vector for the segment
+ Vector3 d = /*b - a*/ dir;
+ // Set initial interval to being the whole segment. For a ray, tlast should be
+ // set to +RR_FLT_MAX. For a line, additionally tfirst should be set to -RR_FLT_MAX
+ tfirst = 0.0f;
+ tlast = 1.0f;
+ iFirstPlane = -1;
+ iLastPlane = -1;
+ // Intersect segment against each plane
+ for (int i = 0; i < numPlanes; i++)
+ {
+ const Vector4& plane = p[i].GetPlaneEquationCoefficients();
+
+ float denom = plane.Dot3(d);
+ // don't forget we store -D in the plane
+ float dist = (-plane.GetW()) - plane.Dot3(sa);
+ // Test if segment runs parallel to the plane
+ if (denom == 0.0f)
+ {
+ // If so, return "no intersection" if segment lies outside plane
+ if (dist < 0.0f)
{
- tlast = t;
- iLastPlane = i;
+ return false;
}
}
-
- // Exit with "no intersection" if intersection becomes empty
- if (tfirst > tlast)
+ else
{
- return false;
+ // Compute parameterized t value for intersection with current plane
+ float t = dist / denom;
+ if (denom < 0.0f)
+ {
+ // When entering half space, update tfirst if t is larger
+ if (t > tfirst)
+ {
+ tfirst = t;
+ iFirstPlane = i;
+ }
+ }
+ else
+ {
+ // When exiting half space, update tlast if t is smaller
+ if (t < tlast)
+ {
+ tlast = t;
+ iLastPlane = i;
+ }
+ }
+
+ // Exit with "no intersection" if intersection becomes empty
+ if (tfirst > tlast)
+ {
+ return false;
+ }
}
}
- }
-
- //DBG_Assert(iFirstPlane!=-1&&iLastPlane!=-1,("We have some bad border case to have only one plane, fix this function!"));
- if (iFirstPlane == -1 && iLastPlane == -1)
- {
- return false;
- }
- // A nonzero logical intersection, so the segment intersects the polyhedron
- return true;
-}
+ // DBG_Assert(iFirstPlane!=-1&&iLastPlane!=-1,("We have some bad border case to have only one plane, fix this function!"));
+ if (iFirstPlane == -1 && iLastPlane == -1)
+ {
+ return false;
+ }
-//=========================================================================
-// ClosestSegmentSegment
-// [10/21/2009]
-//=========================================================================
-void
-AZ::Intersect::ClosestSegmentSegment(
- const Vector3& segment1Start, const Vector3& segment1End,
- const Vector3& segment2Start, const Vector3& segment2End,
- float& segment1Proportion, float& segment2Proportion,
- Vector3& closestPointSegment1, Vector3& closestPointSegment2,
- float epsilon)
-{
- const Vector3 segment1 = segment1End - segment1Start;
- const Vector3 segment2 = segment2End - segment2Start;
- const Vector3 segmentStartsVector = segment1Start - segment2Start;
- const float segment1LengthSquared = segment1.Dot(segment1);
- const float segment2LengthSquared = segment2.Dot(segment2);
-
- // Check if both segments degenerate into points
- if (segment1LengthSquared <= epsilon && segment2LengthSquared <= epsilon)
- {
- segment1Proportion = 0.0f;
- segment2Proportion = 0.0f;
- closestPointSegment1 = segment1Start;
- closestPointSegment2 = segment2Start;
- return;
+ // A nonzero logical intersection, so the segment intersects the polyhedron
+ return true;
}
- float projSegment2SegmentStarts = segment2.Dot(segmentStartsVector);
-
- // Check if segment 1 degenerates into a point
- if (segment1LengthSquared <= epsilon)
- {
- segment1Proportion = 0.0f;
- segment2Proportion = AZ::GetClamp(projSegment2SegmentStarts / segment2LengthSquared, 0.0f, 1.0f);
- }
- else
+ //=========================================================================
+ // ClosestSegmentSegment
+ // [10/21/2009]
+ //=========================================================================
+ void Intersect::ClosestSegmentSegment(
+ const Vector3& segment1Start,
+ const Vector3& segment1End,
+ const Vector3& segment2Start,
+ const Vector3& segment2End,
+ float& segment1Proportion,
+ float& segment2Proportion,
+ Vector3& closestPointSegment1,
+ Vector3& closestPointSegment2,
+ float epsilon)
{
- float projSegment1SegmentStarts = segment1.Dot(segmentStartsVector);
- // Check if segment 2 degenerates into a point
- if (segment2LengthSquared <= epsilon)
+ const Vector3 segment1 = segment1End - segment1Start;
+ const Vector3 segment2 = segment2End - segment2Start;
+ const Vector3 segmentStartsVector = segment1Start - segment2Start;
+ const float segment1LengthSquared = segment1.Dot(segment1);
+ const float segment2LengthSquared = segment2.Dot(segment2);
+
+ // Check if both segments degenerate into points
+ if (segment1LengthSquared <= epsilon && segment2LengthSquared <= epsilon)
{
- segment1Proportion = AZ::GetClamp(-projSegment1SegmentStarts / segment1LengthSquared, 0.0f, 1.0f);
+ segment1Proportion = 0.0f;
segment2Proportion = 0.0f;
+ closestPointSegment1 = segment1Start;
+ closestPointSegment2 = segment2Start;
+ return;
+ }
+
+ float projSegment2SegmentStarts = segment2.Dot(segmentStartsVector);
+
+ // Check if segment 1 degenerates into a point
+ if (segment1LengthSquared <= epsilon)
+ {
+ segment1Proportion = 0.0f;
+ segment2Proportion = AZ::GetClamp(projSegment2SegmentStarts / segment2LengthSquared, 0.0f, 1.0f);
}
else
{
- // The general non-degenerate case starts here
- float projSegment1Segment2 = segment1.Dot(segment2);
- float denom = segment1LengthSquared * segment2LengthSquared - projSegment1Segment2 * projSegment1Segment2; // Always nonnegative
-
- // If segments not parallel, compute closest point on segment1 to segment2, and
- // clamp to segment1. Else pick arbitrary segment1Proportion (here 0)
- if (denom != 0.0f)
+ float projSegment1SegmentStarts = segment1.Dot(segmentStartsVector);
+ // Check if segment 2 degenerates into a point
+ if (segment2LengthSquared <= epsilon)
{
- segment1Proportion = AZ::GetClamp((projSegment1Segment2 * projSegment2SegmentStarts - projSegment1SegmentStarts * segment2LengthSquared) / denom, 0.0f, 1.0f);
+ segment1Proportion = AZ::GetClamp(-projSegment1SegmentStarts / segment1LengthSquared, 0.0f, 1.0f);
+ segment2Proportion = 0.0f;
}
else
{
- segment1Proportion = 0.0f;
- }
+ // The general non-degenerate case starts here
+ float projSegment1Segment2 = segment1.Dot(segment2);
+ float denom =
+ segment1LengthSquared * segment2LengthSquared - projSegment1Segment2 * projSegment1Segment2; // Always nonnegative
- // Compute point on segment2 closest to segment1 using
- segment2Proportion = (projSegment1Segment2 * segment1Proportion + projSegment2SegmentStarts) / segment2LengthSquared;
+ // If segments not parallel, compute closest point on segment1 to segment2, and
+ // clamp to segment1. Else pick arbitrary segment1Proportion (here 0)
+ if (denom != 0.0f)
+ {
+ segment1Proportion = AZ::GetClamp(
+ (projSegment1Segment2 * projSegment2SegmentStarts - projSegment1SegmentStarts * segment2LengthSquared) / denom,
+ 0.0f, 1.0f);
+ }
+ else
+ {
+ segment1Proportion = 0.0f;
+ }
- // If segment2Proportion in [0,1] done. Else clamp segment2Proportion, recompute segment1Proportion for the new value of segment2Proportion
- // and clamp segment1Proportion to [0, 1]
- if (segment2Proportion < 0.0f)
- {
- segment2Proportion = 0.0f;
- segment1Proportion = AZ::GetClamp(-projSegment1SegmentStarts / segment1LengthSquared, 0.0f, 1.0f);
- }
- else if (segment2Proportion > 1.0f)
- {
- segment2Proportion = 1.0f;
- segment1Proportion = AZ::GetClamp((projSegment1Segment2 - projSegment1SegmentStarts) / segment1LengthSquared, 0.0f, 1.0f);
+ // Compute point on segment2 closest to segment1 using
+ segment2Proportion = (projSegment1Segment2 * segment1Proportion + projSegment2SegmentStarts) / segment2LengthSquared;
+
+ // If segment2Proportion in [0,1] done. Else clamp segment2Proportion, recompute segment1Proportion for the new value of
+ // segment2Proportion and clamp segment1Proportion to [0, 1]
+ if (segment2Proportion < 0.0f)
+ {
+ segment2Proportion = 0.0f;
+ segment1Proportion = AZ::GetClamp(-projSegment1SegmentStarts / segment1LengthSquared, 0.0f, 1.0f);
+ }
+ else if (segment2Proportion > 1.0f)
+ {
+ segment2Proportion = 1.0f;
+ segment1Proportion =
+ AZ::GetClamp((projSegment1Segment2 - projSegment1SegmentStarts) / segment1LengthSquared, 0.0f, 1.0f);
+ }
}
}
- }
-
- closestPointSegment1 = segment1Start + segment1 * segment1Proportion;
- closestPointSegment2 = segment2Start + segment2 * segment2Proportion;
-}
-void AZ::Intersect::ClosestSegmentSegment(
- const Vector3& segment1Start, const Vector3& segment1End,
- const Vector3& segment2Start, const Vector3& segment2End,
- Vector3& closestPointSegment1, Vector3& closestPointSegment2,
- float epsilon)
-{
- float proportion1, proportion2;
- AZ::Intersect::ClosestSegmentSegment(
- segment1Start, segment1End,
- segment2Start, segment2End,
- proportion1, proportion2,
- closestPointSegment1, closestPointSegment2, epsilon);
-}
+ closestPointSegment1 = segment1Start + segment1 * segment1Proportion;
+ closestPointSegment2 = segment2Start + segment2 * segment2Proportion;
+ }
-void AZ::Intersect::ClosestPointSegment(
- const Vector3& point, const Vector3& segmentStart, const Vector3& segmentEnd,
- float& proportion, Vector3& closestPointOnSegment)
-{
- Vector3 segment = segmentEnd - segmentStart;
- // Project point onto segment, but deferring divide by segment.Dot(segment)
- proportion = (point - segmentStart).Dot(segment);
- if (proportion <= 0.0f)
+ void Intersect::ClosestSegmentSegment(
+ const Vector3& segment1Start,
+ const Vector3& segment1End,
+ const Vector3& segment2Start,
+ const Vector3& segment2End,
+ Vector3& closestPointSegment1,
+ Vector3& closestPointSegment2,
+ float epsilon)
{
- // Point projects outside the [segmentStart, segmentEnd] interval, on the segmentStart side, clamp to segmentStart
- proportion = 0.0f;
- closestPointOnSegment = segmentStart;
+ float proportion1, proportion2;
+ Intersect::ClosestSegmentSegment(
+ segment1Start, segment1End, segment2Start, segment2End, proportion1, proportion2, closestPointSegment1, closestPointSegment2,
+ epsilon);
}
- else
+
+ void Intersect::ClosestPointSegment(
+ const Vector3& point, const Vector3& segmentStart, const Vector3& segmentEnd, float& proportion, Vector3& closestPointOnSegment)
{
- float segmentLengthSquared = segment.Dot(segment);
- if (proportion >= segmentLengthSquared)
+ Vector3 segment = segmentEnd - segmentStart;
+ // Project point onto segment, but deferring divide by segment.Dot(segment)
+ proportion = (point - segmentStart).Dot(segment);
+ if (proportion <= 0.0f)
{
- // Point projects outside the [segmentStart, segmentEnd] interval, on the segmentEnd side, clamp to segmentEnd
- proportion = 1.0f;
- closestPointOnSegment = segmentEnd;
+ // Point projects outside the [segmentStart, segmentEnd] interval, on the segmentStart side, clamp to segmentStart
+ proportion = 0.0f;
+ closestPointOnSegment = segmentStart;
}
else
{
- // Point projects inside the [segmentStart, segmentEnd] interval, must do deferred divide now
- proportion = proportion / segmentLengthSquared;
- closestPointOnSegment = segmentStart + (proportion * segment);
+ float segmentLengthSquared = segment.Dot(segment);
+ if (proportion >= segmentLengthSquared)
+ {
+ // Point projects outside the [segmentStart, segmentEnd] interval, on the segmentEnd side, clamp to segmentEnd
+ proportion = 1.0f;
+ closestPointOnSegment = segmentEnd;
+ }
+ else
+ {
+ // Point projects inside the [segmentStart, segmentEnd] interval, must do deferred divide now
+ proportion = proportion / segmentLengthSquared;
+ closestPointOnSegment = segmentStart + (proportion * segment);
+ }
}
}
-}
#if 0
//////////////////////////////////////////////////////////////////////////
@@ -2121,3 +2171,5 @@ namespace test
}
//////////////////////////////////////////////////////////////////////////
#endif
+
+} // namespace AZ
diff --git a/Code/Framework/AzCore/AzCore/Math/Plane.inl b/Code/Framework/AzCore/AzCore/Math/Plane.inl
index f33d356312..795ee8b4bc 100644
--- a/Code/Framework/AzCore/AzCore/Math/Plane.inl
+++ b/Code/Framework/AzCore/AzCore/Math/Plane.inl
@@ -19,12 +19,14 @@ namespace AZ
AZ_MATH_INLINE Plane Plane::CreateFromNormalAndPoint(const Vector3& normal, const Vector3& point)
{
+ AZ_MATH_ASSERT(normal.IsNormalized(), "This normal is not normalized");
return Plane(Simd::Vec4::ConstructPlane(normal.GetSimdValue(), point.GetSimdValue()));
}
AZ_MATH_INLINE Plane Plane::CreateFromNormalAndDistance(const Vector3& normal, float dist)
{
+ AZ_MATH_ASSERT(normal.IsNormalized(), "This normal is not normalized");
Plane result;
result.Set(normal, dist);
return result;
@@ -33,6 +35,7 @@ namespace AZ
AZ_MATH_INLINE Plane Plane::CreateFromCoefficients(const float a, const float b, const float c, const float d)
{
+ AZ_MATH_ASSERT(Vector3(a, b, c).IsNormalized(), "This normal is notormalized");
Plane result;
result.Set(a, b, c, d);
return result;
@@ -65,18 +68,21 @@ namespace AZ
AZ_MATH_INLINE void Plane::Set(const Vector3& normal, float d)
{
+ AZ_MATH_ASSERT(normal.IsNormalized(), "This normal is notormalized");
m_plane.Set(normal, d);
}
AZ_MATH_INLINE void Plane::Set(float a, float b, float c, float d)
{
+ AZ_MATH_ASSERT(Vector3(a, b, c).IsNormalized(), "This normal is notormalized");
m_plane.Set(a, b, c, d);
}
AZ_MATH_INLINE void Plane::SetNormal(const Vector3& normal)
{
+ AZ_MATH_ASSERT(normal.IsNormalized(), "This normal is notormalized");
m_plane.SetX(normal.GetX());
m_plane.SetY(normal.GetY());
m_plane.SetZ(normal.GetZ());
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..ad454aab4f 100644
--- a/Code/Framework/AzCore/AzCore/Math/Quaternion.h
+++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.h
@@ -54,11 +54,11 @@ namespace AZ
//! Sets components using a Vector3 for the imaginary part and a float for the real part.
static Quaternion CreateFromVector3AndValue(const Vector3& v, float w);
- //! Sets the quaternion to be a rotation around a specified axis.
+ //! Sets the quaternion to be a rotation around a specified axis in radians.
//! @{
- static Quaternion CreateRotationX(float angle);
- static Quaternion CreateRotationY(float angle);
- static Quaternion CreateRotationZ(float angle);
+ static Quaternion CreateRotationX(float angleInRadians);
+ static Quaternion CreateRotationY(float angleInRadians);
+ static Quaternion CreateRotationZ(float angleInRadians);
//! @}
//! Creates a quaternion from a Matrix3x3
@@ -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.
@@ -165,6 +168,14 @@ namespace AZ
float NormalizeWithLengthEstimate();
//! @}
+ //! Get the shortest equivalent of the rotation.
+ //! In case the w component of the quaternion is negative the rotation is > 180° and taking the longer path.
+ //! The quaternion will be inverted in that case to take the shortest path of rotation.
+ //! @{
+ Quaternion GetShortestEquivalent() const;
+ void ShortestEquivalent();
+ //! @}
+
//! Linearly interpolate towards a destination quaternion.
//! @param[in] dest The quaternion to interpolate towards.
//! @param[in] t Normalized interpolation value where 0.0 represents the current and 1.0 the destination value.
@@ -231,6 +242,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..bd51a90fca 100644
--- a/Code/Framework/AzCore/AzCore/Math/Quaternion.inl
+++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.inl
@@ -73,27 +73,27 @@ namespace AZ
}
- AZ_MATH_INLINE Quaternion Quaternion::CreateRotationX(float angle)
+ AZ_MATH_INLINE Quaternion Quaternion::CreateRotationX(float angleInRadians)
{
- const float halfAngle = 0.5f * angle;
+ const float halfAngle = 0.5f * angleInRadians;
float sin, cos;
SinCos(halfAngle, sin, cos);
return Quaternion(sin, 0.0f, 0.0f, cos);
}
- AZ_MATH_INLINE Quaternion Quaternion::CreateRotationY(float angle)
+ AZ_MATH_INLINE Quaternion Quaternion::CreateRotationY(float angleInRadians)
{
- const float halfAngle = 0.5f * angle;
+ const float halfAngle = 0.5f * angleInRadians;
float sin, cos;
SinCos(halfAngle, sin, cos);
return Quaternion(0.0f, sin, 0.0f, cos);
}
- AZ_MATH_INLINE Quaternion Quaternion::CreateRotationZ(float angle)
+ AZ_MATH_INLINE Quaternion Quaternion::CreateRotationZ(float angleInRadians)
{
- const float halfAngle = 0.5f * angle;
+ const float halfAngle = 0.5f * angleInRadians;
float sin, cos;
SinCos(halfAngle, sin, cos);
return Quaternion(0.0f, 0.0f, sin, cos);
@@ -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);
@@ -327,6 +345,23 @@ namespace AZ
}
+ AZ_MATH_INLINE Quaternion Quaternion::GetShortestEquivalent() const
+ {
+ if (GetW() < 0.0f)
+ {
+ return -(*this);
+ }
+
+ return *this;
+ }
+
+
+ AZ_MATH_INLINE void Quaternion::ShortestEquivalent()
+ {
+ *this = GetShortestEquivalent();
+ }
+
+
AZ_MATH_INLINE Quaternion Quaternion::Lerp(const Quaternion& dest, float t) const
{
if (Dot(dest) >= 0.0f)
diff --git a/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp b/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp
index 5f4dc9e5df..96c1a6a420 100644
--- a/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp
+++ b/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp
@@ -9,39 +9,38 @@
#include
#include
-#include
#include
+#include
#include // for memset
namespace AZ::SfmtInternal
{
- static const int N32 = N * 4;
- static const int N64 = N * 2;
- static const int POS1 = 122;
- static const int SL1 = 18;
- static const int SR1 = 11;
- static const int SL2 = 1;
- static const int SR2 = 1;
- static const unsigned int MSK1 = 0xdfffffefU;
- static const unsigned int MSK2 = 0xddfecb7fU;
- static const unsigned int MSK3 = 0xbffaffffU;
- static const unsigned int MSK4 = 0xbffffff6U;
- static const unsigned int PARITY1 = 0x00000001U;
- static const unsigned int PARITY2 = 0x00000000U;
- static const unsigned int PARITY3 = 0x00000000U;
- static const unsigned int PARITY4 = 0x13c9e684U;
+ static const int N32 = N * 4;
+ static const int N64 = N * 2;
+ static const int POS1 = 122;
+ static const int SL1 = 18;
+ static const int SR1 = 11;
+ static const int SL2 = 1;
+ static const int SR2 = 1;
+ static const unsigned int MSK1 = 0xdfffffefU;
+ static const unsigned int MSK2 = 0xddfecb7fU;
+ static const unsigned int MSK3 = 0xbffaffffU;
+ static const unsigned int MSK4 = 0xbffffff6U;
+ static const unsigned int PARITY1 = 0x00000001U;
+ static const unsigned int PARITY2 = 0x00000000U;
+ static const unsigned int PARITY3 = 0x00000000U;
+ static const unsigned int PARITY4 = 0x13c9e684U;
/** a parity check vector which certificate the period of 2^{MEXP} */
- static unsigned int parity[4] = {PARITY1, PARITY2, PARITY3, PARITY4};
+ static unsigned int parity[4] = { PARITY1, PARITY2, PARITY3, PARITY4 };
#ifdef ONLY64
-# define idxof(_i) (_i ^ 1)
+#define idxof(_i) (_i ^ 1)
#else
-# define idxof(_i) _i
+#define idxof(_i) _i
#endif // ONLY64
-
#if AZ_TRAIT_USE_PLATFORM_SIMD_SSE
/**
* This function represents the recursion formula.
@@ -52,7 +51,8 @@ namespace AZ::SfmtInternal
* @param mask 128-bit mask
* @return output
*/
- AZ_FORCE_INLINE static Simd::Vec4::Int32Type simd_recursion(Simd::Vec4::Int32Type* a, Simd::Vec4::Int32Type* b, Simd::Vec4::Int32Type c, Simd::Vec4::Int32Type d, Simd::Vec4::Int32Type mask)
+ AZ_FORCE_INLINE static Simd::Vec4::Int32Type simd_recursion(
+ Simd::Vec4::Int32Type* a, Simd::Vec4::Int32Type* b, Simd::Vec4::Int32Type c, Simd::Vec4::Int32Type d, Simd::Vec4::Int32Type mask)
{
Simd::Vec4::Int32Type v, x, y, z;
x = *a;
@@ -151,7 +151,7 @@ namespace AZ::SfmtInternal
inline void rshift128(w128_t* out, w128_t const* in, int shift)
{
AZ::u64 th, tl, oh, ol;
- #ifdef ONLY64
+#ifdef ONLY64
th = ((AZ::u64)in->u[2] << 32) | ((AZ::u64)in->u[3]);
tl = ((AZ::u64)in->u[0] << 32) | ((AZ::u64)in->u[1]);
@@ -204,7 +204,7 @@ namespace AZ::SfmtInternal
#endif
}
- inline void do_recursion(w128_t* r, w128_t* a, w128_t* b, w128_t* c, w128_t* d)
+ inline void do_recursion(w128_t* r, w128_t* a, w128_t* b, w128_t* c, w128_t* d)
{
w128_t x;
w128_t y;
@@ -229,7 +229,7 @@ namespace AZ::SfmtInternal
inline void gen_rand_all(Sfmt& g)
{
int i;
- w128_t* r1, * r2;
+ w128_t *r1, *r2;
r1 = &g.m_sfmt[N - 2];
r2 = &g.m_sfmt[N - 1];
@@ -257,7 +257,7 @@ namespace AZ::SfmtInternal
inline void gen_rand_array(Sfmt& g, w128_t* array, int size)
{
int i, j;
- w128_t* r1, * r2;
+ w128_t *r1, *r2;
r1 = &g.m_sfmt[N - 2];
r2 = &g.m_sfmt[N - 1];
@@ -295,82 +295,80 @@ namespace AZ::SfmtInternal
#endif
} // namespace AZ::SfmtInternal
-using namespace AZ;
-
//////////////////////////////////////////////////////////////////////////
// Statics
//////////////////////////////////////////////////////////////////////////
+namespace AZ
+{
+ static EnvironmentVariable s_sfmt;
+ static const char* s_globalSfmtName = "GlobalSfmt";
-static EnvironmentVariable s_sfmt;
-static const char* s_globalSfmtName = "GlobalSfmt";
+ Sfmt& Sfmt::GetInstance()
+ {
+ if (!s_sfmt)
+ {
+ s_sfmt = AZ::Environment::FindVariable(s_globalSfmtName);
+ if (!s_sfmt)
+ {
+ Sfmt::Create();
+ }
+ }
-Sfmt& Sfmt::GetInstance()
-{
- if (!s_sfmt)
+ return s_sfmt.Get();
+ }
+
+ void Sfmt::Create()
{
- s_sfmt = AZ::Environment::FindVariable(s_globalSfmtName);
if (!s_sfmt)
{
- Sfmt::Create();
+ s_sfmt = AZ::Environment::CreateVariable(s_globalSfmtName);
}
}
- return s_sfmt.Get();
-}
+ void Sfmt::Destroy()
+ {
+ s_sfmt.Reset();
+ }
-void Sfmt::Create()
-{
- if (!s_sfmt)
+ //=========================================================================
+ // Sfmt
+ // [4/10/2012]
+ //=========================================================================
+ Sfmt::Sfmt()
{
- s_sfmt = AZ::Environment::CreateVariable(s_globalSfmtName);
+ m_psfmt32 = &m_sfmt[0].u[0];
+ m_psfmt64 = reinterpret_cast(m_psfmt32);
+
+ Seed();
}
-}
-void Sfmt::Destroy()
-{
- s_sfmt.Reset();
-}
-
-//=========================================================================
-// Sfmt
-// [4/10/2012]
-//=========================================================================
-Sfmt::Sfmt()
-{
- m_psfmt32 = &m_sfmt[0].u[0];
- m_psfmt64 = reinterpret_cast(m_psfmt32);
+ //=========================================================================
+ // Seed
+ // [4/10/2012]
+ //=========================================================================
+ Sfmt::Sfmt(AZ::u32* keys, int numKeys)
+ {
+ m_psfmt32 = &m_sfmt[0].u[0];
+ m_psfmt64 = reinterpret_cast(m_psfmt32);
- Seed();
-}
+ Seed(keys, numKeys);
+ }
-//=========================================================================
-// Seed
-// [4/10/2012]
-//=========================================================================
-Sfmt::Sfmt(AZ::u32* keys, int numKeys)
-{
- m_psfmt32 = &m_sfmt[0].u[0];
- m_psfmt64 = reinterpret_cast(m_psfmt32);
-
- Seed(keys, numKeys);
-}
-
-//=========================================================================
-// Seed
-// [4/10/2012]
-//=========================================================================
-void
-Sfmt::Seed()
-{
- // buffer with random values
- AZ::u32 buffer[32];
- BetterPseudoRandom rnd;
- bool result = rnd.GetRandom(buffer, sizeof(buffer));
- (void)result;
- AZ_Warning("System", result, "Failed to seed properly the Smft generator!");
- Seed(buffer, AZ_ARRAY_SIZE(buffer));
-}
+ //=========================================================================
+ // Seed
+ // [4/10/2012]
+ //=========================================================================
+ void Sfmt::Seed()
+ {
+ // buffer with random values
+ AZ::u32 buffer[32];
+ BetterPseudoRandom rnd;
+ bool result = rnd.GetRandom(buffer, sizeof(buffer));
+ (void)result;
+ AZ_Warning("System", result, "Failed to seed properly the Smft generator!");
+ Seed(buffer, AZ_ARRAY_SIZE(buffer));
+ }
/**
* This function represents a function used in the initialization
@@ -388,226 +386,222 @@ Sfmt::Seed()
*/
#define azsfmt_func2(x) ((x ^ (x >> 27)) * (AZ::u32)1566083941UL)
-//=========================================================================
-// Seed
-// [4/10/2012]
-//=========================================================================
-void
-Sfmt::Seed(AZ::u32* keys, int numKeys)
-{
- using SfmtInternal::N;
- using SfmtInternal::N32;
- int i, j, count;
- AZ::u32 r;
- int lag;
- int mid;
- int size = N * 4;
-
- if (size >= 623)
- {
- lag = 11;
- }
- else if (size >= 68)
- {
- lag = 7;
- }
- else if (size >= 39)
- {
- lag = 5;
- }
- else
+ //=========================================================================
+ // Seed
+ // [4/10/2012]
+ //=========================================================================
+ void Sfmt::Seed(AZ::u32* keys, int numKeys)
{
- lag = 3;
- }
- mid = (size - lag) / 2;
+ using SfmtInternal::N;
+ using SfmtInternal::N32;
+ int i, j, count;
+ AZ::u32 r;
+ int lag;
+ int mid;
+ int size = N * 4;
+
+ if (size >= 623)
+ {
+ lag = 11;
+ }
+ else if (size >= 68)
+ {
+ lag = 7;
+ }
+ else if (size >= 39)
+ {
+ lag = 5;
+ }
+ else
+ {
+ lag = 3;
+ }
+ mid = (size - lag) / 2;
- memset(m_sfmt, 0x8b, sizeof(m_sfmt));
- if (numKeys + 1 > SfmtInternal::N32)
- {
- count = numKeys + 1;
- }
- else
- {
- count = N32;
- }
- r = azsfmt_func1((m_psfmt32[idxof(0)] ^ m_psfmt32[idxof(mid)] ^ m_psfmt32[idxof(N32 - 1)]));
- m_psfmt32[idxof(mid)] += r;
- r += numKeys;
- m_psfmt32[idxof(mid + lag)] += r;
- m_psfmt32[idxof(0)] = r;
-
- count--;
- for (i = 1, j = 0; (j < count) && (j < numKeys); j++)
- {
- r = azsfmt_func1((m_psfmt32[idxof(i)] ^ m_psfmt32[idxof((i + mid) % N32)] ^ m_psfmt32[idxof((i + N32 - 1) % N32)]));
- m_psfmt32[idxof((i + mid) % N32)] += r;
- r += keys[j] + i;
- m_psfmt32[idxof((i + mid + lag) % N32)] += r;
- m_psfmt32[idxof(i)] = r;
- i = (i + 1) % N32;
- }
- for (; j < count; j++)
- {
- r = azsfmt_func1((m_psfmt32[idxof(i)] ^ m_psfmt32[idxof((i + mid) % N32)] ^ m_psfmt32[idxof((i + N32 - 1) % N32)]));
- m_psfmt32[idxof((i + mid) % N32)] += r;
- r += i;
- m_psfmt32[idxof((i + mid + lag) % N32)] += r;
- m_psfmt32[idxof(i)] = r;
- i = (i + 1) % N32;
- }
- for (j = 0; j < N32; j++)
- {
- r = azsfmt_func2((m_psfmt32[idxof(i)] + m_psfmt32[idxof((i + mid) % N32)] + m_psfmt32[idxof((i + N32 - 1) % N32)]));
- m_psfmt32[idxof((i + mid) % N32)] ^= r;
- r -= i;
- m_psfmt32[idxof((i + mid + lag) % N32)] ^= r;
- m_psfmt32[idxof(i)] = r;
- i = (i + 1) % N32;
- }
+ memset(m_sfmt, 0x8b, sizeof(m_sfmt));
+ if (numKeys + 1 > SfmtInternal::N32)
+ {
+ count = numKeys + 1;
+ }
+ else
+ {
+ count = N32;
+ }
+ r = azsfmt_func1((m_psfmt32[idxof(0)] ^ m_psfmt32[idxof(mid)] ^ m_psfmt32[idxof(N32 - 1)]));
+ m_psfmt32[idxof(mid)] += r;
+ r += numKeys;
+ m_psfmt32[idxof(mid + lag)] += r;
+ m_psfmt32[idxof(0)] = r;
+
+ count--;
+ for (i = 1, j = 0; (j < count) && (j < numKeys); j++)
+ {
+ r = azsfmt_func1((m_psfmt32[idxof(i)] ^ m_psfmt32[idxof((i + mid) % N32)] ^ m_psfmt32[idxof((i + N32 - 1) % N32)]));
+ m_psfmt32[idxof((i + mid) % N32)] += r;
+ r += keys[j] + i;
+ m_psfmt32[idxof((i + mid + lag) % N32)] += r;
+ m_psfmt32[idxof(i)] = r;
+ i = (i + 1) % N32;
+ }
+ for (; j < count; j++)
+ {
+ r = azsfmt_func1((m_psfmt32[idxof(i)] ^ m_psfmt32[idxof((i + mid) % N32)] ^ m_psfmt32[idxof((i + N32 - 1) % N32)]));
+ m_psfmt32[idxof((i + mid) % N32)] += r;
+ r += i;
+ m_psfmt32[idxof((i + mid + lag) % N32)] += r;
+ m_psfmt32[idxof(i)] = r;
+ i = (i + 1) % N32;
+ }
+ for (j = 0; j < N32; j++)
+ {
+ r = azsfmt_func2((m_psfmt32[idxof(i)] + m_psfmt32[idxof((i + mid) % N32)] + m_psfmt32[idxof((i + N32 - 1) % N32)]));
+ m_psfmt32[idxof((i + mid) % N32)] ^= r;
+ r -= i;
+ m_psfmt32[idxof((i + mid + lag) % N32)] ^= r;
+ m_psfmt32[idxof(i)] = r;
+ i = (i + 1) % N32;
+ }
- m_index = N32;
- PeriodCertification();
-}
+ m_index = N32;
+ PeriodCertification();
+ }
#undef azsfmt_func1
#undef azsfmt_func2
-//=========================================================================
-// PeriodCertification
-// [4/10/2012]
-//=========================================================================
-void
-Sfmt::PeriodCertification()
-{
- int inner = 0;
- int i, j;
- AZ::u32 work;
-
- for (i = 0; i < 4; i++)
+ //=========================================================================
+ // PeriodCertification
+ // [4/10/2012]
+ //=========================================================================
+ void Sfmt::PeriodCertification()
{
- inner ^= m_psfmt32[idxof(i)] & SfmtInternal::parity[i];
- }
- for (i = 16; i > 0; i >>= 1)
- {
- inner ^= inner >> i;
- }
- inner &= 1;
- /* check OK */
- if (inner == 1)
- {
- return;
- }
- /* check NG, and modification */
- for (i = 0; i < 4; i++)
- {
- work = 1;
- for (j = 0; j < 32; j++)
+ int inner = 0;
+ int i, j;
+ AZ::u32 work;
+
+ for (i = 0; i < 4; i++)
+ {
+ inner ^= m_psfmt32[idxof(i)] & SfmtInternal::parity[i];
+ }
+ for (i = 16; i > 0; i >>= 1)
+ {
+ inner ^= inner >> i;
+ }
+ inner &= 1;
+ /* check OK */
+ if (inner == 1)
+ {
+ return;
+ }
+ /* check NG, and modification */
+ for (i = 0; i < 4; i++)
{
- if ((work & SfmtInternal::parity[i]) != 0)
+ work = 1;
+ for (j = 0; j < 32; j++)
{
- m_psfmt32[idxof(i)] ^= work;
- return;
+ if ((work & SfmtInternal::parity[i]) != 0)
+ {
+ m_psfmt32[idxof(i)] ^= work;
+ return;
+ }
+ work = work << 1;
}
- work = work << 1;
}
}
-}
-//=========================================================================
-// Rand32
-// [4/10/2012]
-//=========================================================================
-AZ::u32 Sfmt::Rand32()
-{
- int index = m_index.fetch_add(1);
- if (index >= SfmtInternal::N32)
+ //=========================================================================
+ // Rand32
+ // [4/10/2012]
+ //=========================================================================
+ AZ::u32 Sfmt::Rand32()
{
- AZStd::lock_guard lock(m_generationMutex);
- // if this thread is the one that sets m_index to 0, then this thread
- // does the generation
- index += 1; // compare against the result of fetch_add(1) above
- if (m_index.compare_exchange_strong(index, 0))
+ int index = m_index.fetch_add(1);
+ if (index >= SfmtInternal::N32)
{
- SfmtInternal::gen_rand_all(*this);
+ AZStd::lock_guard lock(m_generationMutex);
+ // if this thread is the one that sets m_index to 0, then this thread
+ // does the generation
+ index += 1; // compare against the result of fetch_add(1) above
+ if (m_index.compare_exchange_strong(index, 0))
+ {
+ SfmtInternal::gen_rand_all(*this);
+ }
+ // try again, with the new table
+ return Rand32();
}
- // try again, with the new table
- return Rand32();
+ return m_psfmt32[index];
}
- return m_psfmt32[index];
-}
-
-//=========================================================================
-// Rand64
-// [4/10/2012]
-//=========================================================================
-AZ::u64 Sfmt::Rand64()
-{
- int index = m_index.fetch_add(2);
- if (index >= (SfmtInternal::N32 - 1))
+
+ //=========================================================================
+ // Rand64
+ // [4/10/2012]
+ //=========================================================================
+ AZ::u64 Sfmt::Rand64()
{
- AZStd::lock_guard lock(m_generationMutex);
- // if this thread is the one that sets m_index to 0, then this thread
- // does the generation
- index += 2; // compare against the result of fetch_add(2) above
- if (m_index.compare_exchange_strong(index, 0))
+ int index = m_index.fetch_add(2);
+ if (index >= (SfmtInternal::N32 - 1))
{
- SfmtInternal::gen_rand_all(*this);
+ AZStd::lock_guard lock(m_generationMutex);
+ // if this thread is the one that sets m_index to 0, then this thread
+ // does the generation
+ index += 2; // compare against the result of fetch_add(2) above
+ if (m_index.compare_exchange_strong(index, 0))
+ {
+ SfmtInternal::gen_rand_all(*this);
+ }
+ // try again, with the new table
+ return Rand64();
}
- // try again, with the new table
- return Rand64();
+
+ AZ::u64 r;
+ r = m_psfmt64[index / 2];
+ return r;
}
- AZ::u64 r;
- r = m_psfmt64[index / 2];
- return r;
-}
-
-//=========================================================================
-// FillArray32
-// [4/10/2012]
-//=========================================================================
-void
-Sfmt::FillArray32(AZ::u32* array, int size)
-{
- AZ_MATH_ASSERT(m_index == SfmtInternal::N32, "Invalid m_index! Reinitialize!");
- AZ_MATH_ASSERT(size % 4 == 0, "Size must be multiple of 4!");
- AZ_MATH_ASSERT(size >= SfmtInternal::N32, "Size must be bigger than %d GetMinArray32Size()!", SfmtInternal::N32);
-
- SfmtInternal::gen_rand_array(*this, (SfmtInternal::w128_t*)array, size / 4);
- m_index = SfmtInternal::N32;
-}
-
-//=========================================================================
-// FillArray64
-// [4/10/2012]
-//=========================================================================
-void
-Sfmt::FillArray64(AZ::u64* array, int size)
-{
- AZ_MATH_ASSERT(m_index == SfmtInternal::N32, "Invalid m_index! Reinitialize!");
- AZ_MATH_ASSERT(size % 4 == 0, "Size must be multiple of 4!");
- AZ_MATH_ASSERT(size >= SfmtInternal::N64, "Size must be bigger than %d GetMinArray64Size()!", SfmtInternal::N64);
-
- SfmtInternal::gen_rand_array(*this, (SfmtInternal::w128_t*)array, size / 2);
- m_index = SfmtInternal::N32;
-}
-
-//=========================================================================
-// GetMinArray32Size
-// [4/10/2012]
-//=========================================================================
-int
-Sfmt::GetMinArray32Size() const
-{
- return SfmtInternal::N32;
-}
-
-//=========================================================================
-// GetMinArray64Size
-// [4/10/2012]
-//=========================================================================
-int
-Sfmt::GetMinArray64Size() const
-{
- return SfmtInternal::N64;
-}
+ //=========================================================================
+ // FillArray32
+ // [4/10/2012]
+ //=========================================================================
+ void Sfmt::FillArray32(AZ::u32* array, int size)
+ {
+ AZ_MATH_ASSERT(m_index == SfmtInternal::N32, "Invalid m_index! Reinitialize!");
+ AZ_MATH_ASSERT(size % 4 == 0, "Size must be multiple of 4!");
+ AZ_MATH_ASSERT(size >= SfmtInternal::N32, "Size must be bigger than %d GetMinArray32Size()!", SfmtInternal::N32);
+
+ SfmtInternal::gen_rand_array(*this, (SfmtInternal::w128_t*)array, size / 4);
+ m_index = SfmtInternal::N32;
+ }
+
+ //=========================================================================
+ // FillArray64
+ // [4/10/2012]
+ //=========================================================================
+ void Sfmt::FillArray64(AZ::u64* array, int size)
+ {
+ AZ_MATH_ASSERT(m_index == SfmtInternal::N32, "Invalid m_index! Reinitialize!");
+ AZ_MATH_ASSERT(size % 4 == 0, "Size must be multiple of 4!");
+ AZ_MATH_ASSERT(size >= SfmtInternal::N64, "Size must be bigger than %d GetMinArray64Size()!", SfmtInternal::N64);
+
+ SfmtInternal::gen_rand_array(*this, (SfmtInternal::w128_t*)array, size / 2);
+ m_index = SfmtInternal::N32;
+ }
+
+ //=========================================================================
+ // GetMinArray32Size
+ // [4/10/2012]
+ //=========================================================================
+ int Sfmt::GetMinArray32Size() const
+ {
+ return SfmtInternal::N32;
+ }
+
+ //=========================================================================
+ // GetMinArray64Size
+ // [4/10/2012]
+ //=========================================================================
+ int Sfmt::GetMinArray64Size() const
+ {
+ return SfmtInternal::N64;
+ }
+
+} // namespace AZ
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;
-
-// 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)
+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
+
+ //=========================================================================
+ // 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)
- {
- // 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)
+ , m_requestedAllocs(0)
+ , m_requestedBytes(0)
+ , m_requestedBytesPeak(0)
+ , m_allocatorName(allocatorName)
{
- 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());
}
-
- 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;
+ //=========================================================================
+ // lock
+ // [9/16/2009]
+ //=========================================================================
+ void AllocationRecords::lock()
{
- 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);
+ m_recordsMutex.lock();
}
- 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)
+ //=========================================================================
+ // try_lock
+ // [9/16/2009]
+ //=========================================================================
+ bool AllocationRecords::try_lock()
{
- // 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;
+ return m_recordsMutex.try_lock();
}
- else
+
+ //=========================================================================
+ // unlock
+ // [9/16/2009]
+ //=========================================================================
+ void AllocationRecords::unlock()
{
- ai.m_name = name;
- ai.m_fileName = fileName;
- ai.m_namesBlock = nullptr;
- ai.m_namesBlockSize = 0;
+ m_recordsMutex.unlock();
}
- 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)
+ //=========================================================================
+ // 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)
{
- ai.m_stackFrames = m_numStackLevels ? reinterpret_cast(m_records.get_allocator().allocate(sizeof(AZ::Debug::StackFrame)*m_numStackLevels, 1)) : nullptr;
- if (ai.m_stackFrames)
+ (void)stackSuppressCount;
+ if (m_mode == RECORD_NO_RECORDS)
+ {
+ return nullptr;
+ }
+ if (address == nullptr)
+ {
+ return nullptr;
+ }
+
+ // memory guard
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ {
+ if (m_isAutoIntegrityCheck)
+ {
+ 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
{
- Debug::StackRecorder::Record(ai.m_stackFrames, m_numStackLevels, stackSuppressCount + 1);
+ 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 (m_decodeImmediately)
+ // 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)
{
- // 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
+ 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;
+ AllocatorManager::Instance().DebugBreak(address, ai);
- 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));
+ // statistics
+ m_requestedBytes += byteSize;
- ++m_requestedAllocs;
+ 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));
- return &ai;
-}
+ ++m_requestedAllocs;
-//=========================================================================
-// 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;
+ return &ai;
}
- AllocationInfo allocationInfo;
+ //=========================================================================
+ // UnregisterAllocation
+ // [9/11/2009]
+ //=========================================================================
+ void AllocationRecords::UnregisterAllocation(void* address, size_t byteSize, size_t alignment, AllocationInfo* info)
{
- 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;
+ }
+ if (address == nullptr)
{
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)
+ AllocationInfo allocationInfo;
{
- m_records.rehash(0);
+ 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())
+ {
+ 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);
+ }
}
- }
-
- AllocatorManager::Instance().DebugBreak(address, allocationInfo);
+ 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!");
+ (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;
- // 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
+ // memory guard
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
{
- // check current allocation
- char* guardAddress = reinterpret_cast(address)+allocationInfo.m_byteSize;
- Debug::GuardValue* guard = reinterpret_cast(guardAddress);
- if (!guard->Validate())
+ if (m_isAutoIntegrityCheck)
+ {
+ // full integrity check
+ IntegrityCheck();
+ }
+ else
{
- 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!!!");
+ // 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();
}
- 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;
- }
-
+ // 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;
+ // if requested set memory to a specific value.
+ if (m_isMarkUnallocatedMemory)
+ {
+ memset(address, GetUnallocatedMarkValue(), byteSize);
+ }
}
- 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))
+ //=========================================================================
+ // ResizeAllocation
+ // [9/20/2009]
+ //=========================================================================
+ void AllocationRecords::ResizeAllocation(void* address, size_t newSize)
{
- if (m_isAutoIntegrityCheck)
+ if (m_mode == RECORD_NO_RECORDS)
{
- // full integrity check
- IntegrityCheck();
+ return;
}
- else
+
+ 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))
{
- // check memory guard
- char* guardAddress = reinterpret_cast(address) + allocationInfo->m_byteSize;
- Debug::GuardValue* guard = reinterpret_cast(guardAddress);
- if (!guard->Validate())
+ if (m_isAutoIntegrityCheck)
+ {
+ // full integrity check
+ IntegrityCheck();
+ }
+ else
{
- 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!!!");
+ // 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();
}
- guard->~GuardValue();
+ // init the new memory guard
+ newSize -= sizeof(Debug::GuardValue);
+ new (reinterpret_cast(address) + newSize) Debug::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)
- {
+ // statistics
+ m_requestedBytes -= allocationInfo->m_byteSize;
+ m_requestedBytes += newSize;
+ size_t currentRequestedBytePeak;
+ size_t newRequestedBytePeak;
+ do
{
- 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;
-}
+ 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;
-//=========================================================================
-// 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;
+ // update allocation size
+ allocationInfo->m_byteSize = newSize;
}
- for (Debug::AllocationRecordsType::const_iterator iter = recordsCopy.begin(); iter != recordsCopy.end(); ++iter)
+
+ //=========================================================================
+ // EnumerateAllocations
+ // [9/29/2009]
+ //=========================================================================
+ void AllocationRecords::SetMode(Mode mode)
{
- if (!cb(iter->first, iter->second, m_numStackLevels))
+ if (mode == RECORD_NO_RECORDS)
{
- break;
+ {
+ 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;
}
-}
-
-//=========================================================================
-// IntegrityCheck
-// [9/9/2011]
-//=========================================================================
-void
-AllocationRecords::IntegrityCheck() const
-{
-#if defined(ENABLE_MEMORY_GUARD)
- if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+
+ //=========================================================================
+ // 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)
- {
- 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
+
+ //=========================================================================
+ // IntegrityCheck
+ // [9/9/2011]
+ //=========================================================================
+ void AllocationRecords::IntegrityCheck() const
{
- AZ_Printf("Memory", "Allocation Addr: 0%p Size: %d Alignment: %d\n", address, info.m_byteSize, info.m_alignment);
+#if defined(ENABLE_MEMORY_GUARD)
+ if (m_memoryGuardSize == sizeof(Debug::GuardValue))
+ {
+ 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
}
- if (m_isDetailed)
+ //=========================================================================
+ // operator()
+ // [9/29/2009]
+ //=========================================================================
+ bool PrintAllocationsCB::operator()(void* address, const AllocationInfo& info, unsigned char numStackLevels)
{
- if (!info.m_stackFrames)
+ if (m_includeNameAndFilename && info.m_name)
{
- AZ_Printf("Memory", " %s (%d)\n", info.m_fileName, info.m_lineNum);
+ 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)
+ {
+ AZ_Printf("Memory", " %s (%d)\n", info.m_fileName, info.m_lineNum);
+ }
+ else
{
- unsigned char numToDecode = AZStd::GetMin(decodeStep, numStackLevels);
- Debug::SymbolStorage::DecodeFrames(&info.m_stackFrames[iFrame], numToDecode, lines);
- for (unsigned char i = 0; i < numToDecode; ++i)
+ // 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(IAllocatorAllocate* allocationSource, const char* name, const char* desc)
+ : IAllocator(allocationSource)
+ , m_name(name)
+ , m_desc(desc)
+ {
+ }
-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);
-}
+ 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::GetName() const
+ {
+ return m_name;
+ }
-const char* AllocatorBase::GetDescription() const
-{
- return m_desc;
-}
+ const char* AllocatorBase::GetDescription() const
+ {
+ return m_desc;
+ }
-IAllocatorAllocate* AllocatorBase::GetSchema()
-{
- return nullptr;
-}
+ IAllocatorAllocate* AllocatorBase::GetSchema()
+ {
+ return nullptr;
+ }
-Debug::AllocationRecords* AllocatorBase::GetRecords()
-{
- return m_records;
-}
+ Debug::AllocationRecords* AllocatorBase::GetRecords()
+ {
+ return m_records;
+ }
-void AllocatorBase::SetRecords(Debug::AllocationRecords* records)
-{
- m_records = records;
- m_memoryGuardSize = records ? records->MemoryGuardSize() : 0;
-}
+ void AllocatorBase::SetRecords(Debug::AllocationRecords* records)
+ {
+ m_records = records;
+ m_memoryGuardSize = records ? records->MemoryGuardSize() : 0;
+ }
-bool AllocatorBase::IsReady() const
-{
- return m_isReady;
-}
+ bool AllocatorBase::IsReady() const
+ {
+ return m_isReady;
+ }
-bool AllocatorBase::CanBeOverridden() const
-{
- return m_canBeOverridden;
-}
+ bool AllocatorBase::CanBeOverridden() const
+ {
+ return m_canBeOverridden;
+ }
-void AllocatorBase::PostCreate()
-{
- if (m_registrationEnabled)
+ void AllocatorBase::PostCreate()
{
- if (AZ::Environment::IsReady())
+ 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);
+ }
- m_isReady = true;
-}
+ if (m_registrationEnabled && AZ::AllocatorManager::IsReady())
+ {
+ AllocatorManager::Instance().UnRegisterAllocator(this);
+ }
-void AllocatorBase::PreDestroy()
-{
- Debug::AllocationRecords* allocatorRecords = GetRecords();
- if(allocatorRecords)
- {
- delete allocatorRecords;
- SetRecords(nullptr);
+ m_isReady = false;
}
- if (m_registrationEnabled && AZ::AllocatorManager::IsReady())
+ void AllocatorBase::SetLazilyCreated(bool lazy)
{
- AllocatorManager::Instance().UnRegisterAllocator(this);
+ m_isLazilyCreated = lazy;
}
- m_isReady = false;
-}
-
-void AllocatorBase::SetLazilyCreated(bool lazy)
-{
- m_isLazilyCreated = lazy;
-}
-
-bool AllocatorBase::IsLazilyCreated() const
-{
- return m_isLazilyCreated;
-}
+ bool AllocatorBase::IsLazilyCreated() const
+ {
+ return m_isLazilyCreated;
+ }
-void AllocatorBase::SetProfilingActive(bool active)
-{
- m_isProfilingActive = active;
-}
+ void AllocatorBase::SetProfilingActive(bool active)
+ {
+ m_isProfilingActive = active;
+ }
-bool AllocatorBase::IsProfilingActive() const
-{
- return m_isProfilingActive;
-}
+ bool AllocatorBase::IsProfilingActive() const
+ {
+ return m_isProfilingActive;
+ }
-void AllocatorBase::DisableOverriding()
-{
- m_canBeOverridden = false;
-}
+ void AllocatorBase::DisableOverriding()
+ {
+ m_canBeOverridden = false;
+ }
-void AllocatorBase::DisableRegistration()
-{
- m_registrationEnabled = 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::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::ProfileReallocationEnd(void* ptr, void* newPtr, size_t newSize, size_t newAlignment)
{
- Debug::AllocationInfo info;
- ProfileDeallocation(ptr, 0, 0, &info);
- ProfileAllocation(newPtr, newSize, newAlignment, info.m_name, info.m_fileName, info.m_lineNum, 0);
+ if (m_isProfilingActive)
+ {
+ 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::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::ProfileResize(void* ptr, size_t newSize)
{
- auto records = GetRecords();
- if (records)
+ if (newSize && m_isProfilingActive)
{
- records->ResizeAllocation(ptr, newSize);
+ 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)
+ bool AllocatorBase::OnOutOfMemory(size_t byteSize, size_t alignment, int flags, const char* name, const char* fileName, int lineNum)
{
- AllocatorManager::Instance().m_outOfMemoryListener(this, byteSize, alignment, flags, name, fileName, lineNum);
- return true;
+ if (AllocatorManager::IsReady() && AllocatorManager::Instance().m_outOfMemoryListener)
+ {
+ AllocatorManager::Instance().m_outOfMemoryListener(this, byteSize, alignment, flags, name, fileName, lineNum);
+ return true;
+ }
+ return false;
}
- 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;
+ //=========================================================================
+ // Create
+ // [1/28/2011]
+ //=========================================================================
+ bool BestFitExternalMapAllocator::Create(const Descriptor& desc)
+ {
+ 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;
+ }
- m_desc = desc;
- BestFitExternalMapSchema::Descriptor schemaDesc;
- schemaDesc.m_mapAllocator = desc.m_mapAllocator;
- schemaDesc.m_memoryBlock = desc.m_memoryBlock;
- schemaDesc.m_memoryBlockByteSize = desc.m_memoryBlockByteSize;
+ //=========================================================================
+ // Destroy
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapAllocator::Destroy()
+ {
+ azdestroy(m_schema, SystemAllocator);
+ m_schema = nullptr;
+ }
- m_schema = azcreate(BestFitExternalMapSchema, (schemaDesc), SystemAllocator);
- if (m_schema == nullptr)
+ AllocatorDebugConfig BestFitExternalMapAllocator::GetDebugConfig()
{
- isReady = false;
+ return AllocatorDebugConfig()
+ .ExcludeFromDebugging(!m_desc.m_allocationRecords)
+ .StackRecordLevels(m_desc.m_stackRecordLevels)
+ .MarksUnallocatedMemory(false)
+ .UsesMemoryGuards(false);
}
- return isReady;
-}
+ //=========================================================================
+ // 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;
-//=========================================================================
-// Destroy
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapAllocator::Destroy()
-{
- azdestroy(m_schema, SystemAllocator);
- m_schema = 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);
-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;
+ 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));
- 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);
+ return address;
+ }
- 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));
+ //=========================================================================
+ // 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));
- return address;
-}
+ (void)byteSize;
+ (void)alignment;
+ m_schema->DeAllocate(ptr);
+ }
-//=========================================================================
-// 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);
-}
-
-//=========================================================================
-// 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;
-}
-
-//=========================================================================
-// 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();
-}
-
-//=========================================================================
-// 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();
-}
+ //=========================================================================
+ // Resize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::Resize(pointer_type ptr, size_type newSize)
+ {
+ (void)ptr;
+ (void)newSize;
+ /* todo */
+ return 0;
+ }
-auto BestFitExternalMapAllocator::GetMaxContiguousAllocationSize() const -> size_type
-{
- return m_schema->GetMaxContiguousAllocationSize();
-}
-
-//=========================================================================
-// GetSubAllocator
-// [1/28/2011]
-//=========================================================================
-IAllocatorAllocate*
-BestFitExternalMapAllocator::GetSubAllocator()
-{
- return m_schema->GetSubAllocator();
-}
+ //=========================================================================
+ // 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));
+ }
+
+ //=========================================================================
+ // 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();
+ }
+
+ //=========================================================================
+ // GetMaxAllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapAllocator::size_type BestFitExternalMapAllocator::GetMaxAllocationSize() const
+ {
+ return m_schema->GetMaxAllocationSize();
+ }
+
+ auto BestFitExternalMapAllocator::GetMaxContiguousAllocationSize() const -> size_type
+ {
+ return m_schema->GetMaxContiguousAllocationSize();
+ }
+
+ //=========================================================================
+ // 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
+ if (m_desc.m_mapAllocator == nullptr)
+ {
+ 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)));
}
- 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
+ //=========================================================================
+ // Allocate
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::pointer_type BestFitExternalMapSchema::Allocate(size_type byteSize, size_type alignment, int flags)
{
- FreeMapType::iterator iter = m_freeChunksMap.find(byteSize);
- size_t blockSize = 0;
- char* blockAddress = nullptr;
- size_t preAllocBlockSize = 0;
- while (iter != m_freeChunksMap.end())
+ (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
{
- blockSize = iter->first;
- blockAddress = iter->second;
- char* alignedAddr = PointerAlignUp(blockAddress, alignment);
- preAllocBlockSize = alignedAddr - blockAddress;
- if (preAllocBlockSize + byteSize <= blockSize)
+ 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.erase(iter); // we have our allocation
- m_used += byteSize;
- address = alignedAddr;
- m_allocChunksMap.insert(AZStd::make_pair(address, byteSize));
- break;
+ 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;
}
- ++iter;
- }
- if (address != nullptr)
- {
- // split blocks
- if (preAllocBlockSize) // if we have a block before the alignment
+ if (address != nullptr)
{
- m_freeChunksMap.insert(AZStd::make_pair(preAllocBlockSize, blockAddress));
+ // split blocks
+ if (preAllocBlockSize) // if we have a block before the alignment
+ {
+ 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;
}
- size_t postAllocBlockSize = blockSize - preAllocBlockSize - byteSize;
- if (postAllocBlockSize)
+ else
{
- m_freeChunksMap.insert(AZStd::make_pair(postAllocBlockSize, address + byteSize));
+ GarbageCollect();
}
+ }
+ return address;
+ }
- break;
+ //=========================================================================
+ // DeAllocate
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapSchema::DeAllocate(pointer_type ptr)
+ {
+ if (ptr == nullptr)
+ {
+ return;
}
- else
+ AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
+ if (iter != m_allocChunksMap.end())
{
- GarbageCollect();
+ m_used -= iter->second;
+ m_freeChunksMap.insert(AZStd::make_pair(iter->second, iter->first));
+ m_allocChunksMap.erase(iter);
}
}
- return address;
-}
-//=========================================================================
-// DeAllocate
-// [1/28/2011]
-//=========================================================================
-void
-BestFitExternalMapSchema::DeAllocate(pointer_type ptr)
-{
- if (ptr == nullptr)
+ //=========================================================================
+ // AllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::size_type BestFitExternalMapSchema::AllocationSize(pointer_type ptr)
{
- 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);
+ AllocMapType::iterator iter = m_allocChunksMap.find(reinterpret_cast(ptr));
+ if (iter != m_allocChunksMap.end())
+ {
+ return iter->second;
+ }
+ return 0;
}
-}
-//=========================================================================
-// 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())
+ //=========================================================================
+ // GetMaxAllocationSize
+ // [1/28/2011]
+ //=========================================================================
+ BestFitExternalMapSchema::size_type BestFitExternalMapSchema::GetMaxAllocationSize() const
{
- return iter->second;
+ if (!m_freeChunksMap.empty())
+ {
+ return m_freeChunksMap.rbegin()->first;
+ }
+ return 0;
}
- return 0;
-}
-//=========================================================================
-// GetMaxAllocationSize
-// [1/28/2011]
-//=========================================================================
-BestFitExternalMapSchema::size_type
-BestFitExternalMapSchema::GetMaxAllocationSize() const
-{
- if (!m_freeChunksMap.empty())
+ auto BestFitExternalMapSchema::GetMaxContiguousAllocationSize() const -> size_type
{
- return m_freeChunksMap.rbegin()->first;
+ // Return the maximum size of any single allocation
+ return AZ_CORE_MAX_ALLOCATOR_SIZE;
}
- 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(); )
+ //=========================================================================
+ // GarbageCollect
+ // [1/28/2011]
+ //=========================================================================
+ void BestFitExternalMapSchema::GarbageCollect()
{
- char* curStart = curBlock->second;
- char* curEnd = curStart + curBlock->first;
- bool isMerge = false;
- for (FreeMapType::iterator nextBlock = curBlock++; nextBlock != m_freeChunksMap.end(); )
+ for (FreeMapType::iterator curBlock = m_freeChunksMap.begin(); curBlock != m_freeChunksMap.end();)
{
- char* nextStart = nextBlock->second;
- char* nextEnd = nextStart + nextBlock->first;
- if (curStart == nextEnd)
+ char* curStart = curBlock->second;
+ char* curEnd = curStart + curBlock->first;
+ bool isMerge = false;
+ for (FreeMapType::iterator nextBlock = curBlock++; nextBlock != m_freeChunksMap.end();)
{
- // 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
+ char* nextStart = nextBlock->second;
+ char* nextEnd = nextStart + nextBlock->first;
+ if (curStart == nextEnd)
{
- curBlock = newBlock;
+ // 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;
}
- 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;
}
- else if (curEnd == nextStart)
+ if (!isMerge)
{
- // 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
- {
- 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);
-
- 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;
+ 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;
};
/**
@@ -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.
-
- 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;
+ 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;
// 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;
};
-}
-
-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)
-{
- 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);
+} // namespace AZ
- m_minAllocationShift = 0;
- for (size_t i = 1; i < sizeof(unsigned int)*8; i++)
+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)
{
- 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;
+ if (m_minAllocationSize >> i == 0)
+ {
+ 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();
}
}
- 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)
+ //=========================================================================
+ // ~PoolAllocation
+ // [9/09/2009]
+ //=========================================================================
+ template
+ PoolAllocation::~PoolAllocation()
{
- new(m_buckets + i)BucketType();
+ 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);
}
-}
-
-//=========================================================================
-// ~PoolAllocation
-// [9/09/2009]
-//=========================================================================
-template
-PoolAllocation::~PoolAllocation()
-{
- GarbageCollect(true);
- for (size_t i = 0; i < m_numBuckets; ++i)
+ //=========================================================================
+ // Allocate
+ // [9/09/2009]
+ //=========================================================================
+ template
+ AZ_INLINE void* PoolAllocation::Allocate(size_t byteSize, size_t alignment)
{
- 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!");
+ 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);
+ // 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;
+ 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.
+ {
+ 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
+ {
+ // 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);
+ }
+
+ // 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;
}
- u32 bucketIndex = static_cast((byteSize >> m_minAllocationShift)-1);
- BucketType& bucket = m_buckets[bucketIndex];
- PageType* page = nullptr;
- if (!bucket.m_pages.empty())
+ //=========================================================================
+ // DeAllocate
+ // [9/09/2009]
+ //=========================================================================
+ template
+ AZ_INLINE void PoolAllocation::DeAllocate(void* ptr)
{
- page = &bucket.m_pages.front();
+ PageType* page = m_allocator->PageFromAddress(ptr);
+ if (page == nullptr)
+ {
+ AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
+ return;
+ }
- // check if we have free slot in the page
- if (page->m_freeList.empty())
+ // (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)
{
- page = nullptr;
+ // 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 (page->m_freeList.size()==1)
+ else if (numFreeNodes == maxElementsPerBucket - 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);
+ // 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);
+ // 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())
+ {
+ bucket.m_pages.push_front(*page);
+ }
+ else
+ {
+ 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;
}
- if (!page)
+
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ template
+ AZ_INLINE size_t PoolAllocation::AllocationSize(void* ptr)
{
- page = m_allocator->PopFreePage();
+ PageType* page = m_allocator->PageFromAddress(ptr);
+ size_t elementSize;
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.
+ 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())
{
- 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);
+ 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);
+ }
+ }
}
}
- else
+ }
+
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ // 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)
{
- // 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;
+ m_impl = aznew PoolSchemaImpl(desc);
}
- bucket.m_pages.push_front(*page);
+ return (m_impl != nullptr);
}
- // The data address and the fake node address are shared.
- void* address = &page->m_freeList.front();
- page->m_freeList.pop_front();
+ //=========================================================================
+ // ~Destroy
+ // [9/15/2009]
+ //=========================================================================
+ bool PoolSchema::Destroy()
+ {
+ delete m_impl;
+ m_impl = nullptr;
+ return true;
+ }
- m_numBytesAllocated += byteSize;
+ //=========================================================================
+ // 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);
+ }
- return address;
-}
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ (void)byteSize;
+ (void)alignment;
+ m_impl->DeAllocate(ptr);
+ }
-//=========================================================================
-// DeAllocate
-// [9/09/2009]
-//=========================================================================
-template
-AZ_INLINE void
-PoolAllocation::DeAllocate(void* ptr)
-{
- PageType* page = m_allocator->PageFromAddress(ptr);
- if (page==nullptr)
+ //=========================================================================
+ // Resize
+ // [10/14/2018]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::Resize(pointer_type ptr, size_type newSize)
{
- AZ_Error("Memory", false, "Address 0x%08x is not in the ThreadPool!", ptr);
- return;
+ (void)ptr;
+ (void)newSize;
+ return 0; // unsupported
}
- // (pageSize - info struct at the end) / (element size)
- size_t maxElementsPerBucket = page->m_maxNumElements;
+ //=========================================================================
+ // 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");
- size_t numFreeNodes = page->m_freeList.size();
- typename PageType::FakeNode* node = new(ptr) typename PageType::FakeNode();
- page->m_freeList.push_front(*node);
+ return ptr;
+ }
- if (numFreeNodes==0)
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchema::AllocationSize(pointer_type ptr)
{
- // 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);
+ return m_impl->AllocationSize(ptr);
}
- else if (numFreeNodes == maxElementsPerBucket-1)
+
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchema::GarbageCollect()
{
- // push to the list of free pages
- BucketType& bucket = m_buckets[page->m_bin];
- PageType* frontPage = &bucket.m_pages.front();
- if (frontPage != page)
+ // 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)
{
- 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())
- {
- bucket.m_pages.push_front(*page);
- }
- else
+ // 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)
{
- m_allocator->PushFreePage(page);
+ Page* page = new (memBlock + pageDataSize) Page();
+ page->m_bin = 0xffffffff;
+ page->m_elementSize = 0;
+ page->m_maxNumElements = 0;
+ PushFreePage(page);
+ memBlock += m_pageSize;
}
}
- else if (frontPage->m_next != nullptr)
+ }
+
+ //=========================================================================
+ // ~PoolSchemaImpl
+ // [9/15/2009]
+ //=========================================================================
+ PoolSchemaImpl::~PoolSchemaImpl()
+ {
+ // Force free all pages
+ m_allocator.GarbageCollect(true);
+
+ // Free all unused memory
+ GarbageCollect();
+
+ if (m_staticDataBlock)
{
- // if the next page has free slots free the current page
- if (frontPage->m_next->m_freeList.size() < maxElementsPerBucket)
+ while (!m_freePages.empty())
{
- bucket.m_pages.erase(*page);
- m_allocator->PushFreePage(page);
+ 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);
}
}
- m_numBytesAllocated -= page->m_elementSize;
-}
+ //=========================================================================
+ // 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;
+ }
-//=========================================================================
-// AllocationSize
-// [11/22/2010]
-//=========================================================================
-template
-AZ_INLINE size_t
-PoolAllocation::AllocationSize(void* ptr)
-{
- PageType* page = m_allocator->PageFromAddress(ptr);
- size_t elementSize;
- if (page)
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void PoolSchemaImpl::DeAllocate(PoolSchema::pointer_type ptr)
{
- elementSize = page->m_elementSize;
+ // 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);
}
- else
+
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ PoolSchema::size_type PoolSchemaImpl::AllocationSize(PoolSchema::pointer_type ptr)
{
- elementSize = 0;
+ // 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);
}
- return elementSize;
-}
+ //=========================================================================
+ // 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;
+ }
-//=========================================================================
-// 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)
+ //=========================================================================
+ // Push
+ // [9/15/2009]
+ //=========================================================================
+ AZ_INLINE void PoolSchemaImpl::PushFreePage(Page* page)
{
- // (pageSize - info struct at the end) / (element size)
- size_t maxElementsPerBucket = (m_pageSize - sizeof(PageType)) / ((i+1) << m_minAllocationShift);
+ m_freePages.push_front(*page);
+ }
- typename BucketType::PageListType& pages = m_buckets[i].m_pages;
- while (!pages.empty())
+ //=========================================================================
+ // PurgePages
+ // [9/11/2009]
+ //=========================================================================
+ void PoolSchemaImpl::GarbageCollect()
+ {
+ // if( m_ownerThread == AZStd::this_thread::get_id() )
{
- PageType& page = pages.front();
- pages.pop_front();
- if (page.m_freeList.size()==maxElementsPerBucket || isForceFreeAllPages)
+ if (m_isDynamic)
{
- if (!m_allocator->IsInStaticBlock(&page))
+ m_allocator.GarbageCollect();
+
+ Bucket::PageListType staticPages;
+ while (!m_freePages.empty())
{
- m_allocator->FreePage(&page);
+ Page* page = &m_freePages.front();
+ m_freePages.pop_front();
+ if (IsInStaticBlock(page))
+ {
+ staticPages.push_front(*page);
+ }
+ else
+ {
+ FreePage(page);
+ }
}
- else
+
+ while (!staticPages.empty())
{
- m_allocator->PushFreePage(&page);
+ Page* page = &staticPages.front();
+ staticPages.pop_front();
+ m_freePages.push_front(*page);
}
}
}
}
-}
-
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-// 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)
- {
- 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)
+
+ //=========================================================================
+ // SetupFreeList
+ // [9/09/2009]
+ //=========================================================================
+ AZ_FORCE_INLINE void PoolSchemaImpl::Page::SetupFreeList(size_t elementSize, size_t pageDataBlockSize)
{
- // 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)
+ 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)
{
- Page* page = new(memBlock+pageDataSize)Page();
- page->m_bin = 0xffffffff;
- page->m_elementSize = 0;
- page->m_maxNumElements = 0;
- PushFreePage(page);
- memBlock += m_pageSize;
+ char* address = pageData + i * elementSize;
+ Page::FakeNode* node = new (address) Page::FakeNode();
+ m_freeList.push_back(*node);
}
}
-}
-//=========================================================================
-// ~PoolSchemaImpl
-// [9/15/2009]
-//=========================================================================
-PoolSchemaImpl::~PoolSchemaImpl()
-{
- // Force free all pages
- m_allocator.GarbageCollect(true);
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
+ // ThreadPoolSchema
+ //////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////
- // Free all unused memory
- GarbageCollect();
+ //=========================================================================
+ // ThreadPoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::ThreadPoolSchema(GetThreadPoolData getThreadPoolData, SetThreadPoolData setThreadPoolData)
+ : m_impl(nullptr)
+ , m_threadPoolGetter(getThreadPoolData)
+ , m_threadPoolSetter(setThreadPoolData)
+ {
+ }
- if (m_staticDataBlock)
+ //=========================================================================
+ // ~ThreadPoolSchema
+ // [9/15/2009]
+ //=========================================================================
+ ThreadPoolSchema::~ThreadPoolSchema()
{
- while (!m_freePages.empty())
- {
- Page* page = &m_freePages.front();
- (void)page;
- m_freePages.pop_front();
- AZ_Assert(IsInStaticBlock(page), "All dynamic pages should be deleted by now!");
- }
- ;
+ AZ_Assert(m_impl == nullptr, "You did not destroy the thread pool schema!");
+ delete m_impl;
+ }
- char* memBlock = reinterpret_cast(m_staticDataBlock);
- size_t pageDataSize = m_pageSize - sizeof(Page);
- for (unsigned int i = 0; i < m_numStaticPages; ++i)
+ //=========================================================================
+ // Create
+ // [9/15/2009]
+ //=========================================================================
+ bool ThreadPoolSchema::Create(const Descriptor& desc)
+ {
+ AZ_Assert(m_impl == nullptr, "PoolSchema already created!");
+ if (m_impl == nullptr)
{
- Page* page = reinterpret_cast(memBlock+pageDataSize);
- page->~Page();
- memBlock += m_pageSize;
+ m_impl = aznew ThreadPoolSchemaImpl(desc, m_threadPoolGetter, m_threadPoolSetter);
}
- m_pageAllocator->DeAllocate(m_staticDataBlock);
+ return (m_impl != nullptr);
}
-}
-
-//=========================================================================
-// 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())
+
+ //=========================================================================
+ // Destroy
+ // [9/15/2009]
+ //=========================================================================
+ bool ThreadPoolSchema::Destroy()
{
- page = &m_freePages.front();
- m_freePages.pop_front();
+ delete m_impl;
+ m_impl = nullptr;
+ return true;
}
- 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() )
+ //=========================================================================
+ // 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)
{
- if (m_isDynamic)
- {
- m_allocator.GarbageCollect();
+ (void)flags;
+ (void)name;
+ (void)fileName;
+ (void)lineNum;
+ (void)suppressStackRecord;
+ return m_impl->Allocate(byteSize, alignment);
+ }
- 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);
- }
- }
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchema::DeAllocate(pointer_type ptr, size_type byteSize, size_type alignment)
+ {
+ (void)byteSize;
+ (void)alignment;
+ m_impl->DeAllocate(ptr);
+ }
- while (!staticPages.empty())
- {
- Page* page = &staticPages.front();
- staticPages.pop_front();
- m_freePages.push_front(*page);
- }
- }
+ //=========================================================================
+ // Resize
+ // [10/14/2018]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::Resize(pointer_type ptr, size_type newSize)
+ {
+ (void)ptr;
+ (void)newSize;
+ return 0; // unsupported
}
-}
-
-//=========================================================================
-// 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)
+
+ //=========================================================================
+ // ReAllocate
+ // [10/14/2018]
+ //=========================================================================
+ ThreadPoolSchema::pointer_type ThreadPoolSchema::ReAllocate(pointer_type ptr, size_type newSize, size_type newAlignment)
{
- char* address = pageData+i*elementSize;
- Page::FakeNode* node = new(address) Page::FakeNode();
- m_freeList.push_back(*node);
+ (void)ptr;
+ (void)newSize;
+ (void)newAlignment;
+ AZ_Assert(false, "unsupported");
+
+ return ptr;
}
-}
-
-//////////////////////////////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////
-// 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)
+ //=========================================================================
+ // AllocationSize
+ // [11/22/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::AllocationSize(pointer_type ptr)
{
- m_impl = aznew ThreadPoolSchemaImpl(desc, m_threadPoolGetter, m_threadPoolSetter);
+ return m_impl->AllocationSize(ptr);
}
- 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;
+ //=========================================================================
+ // DeAllocate
+ // [9/15/2009]
+ //=========================================================================
+ void ThreadPoolSchema::GarbageCollect()
{
- 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;
- }
+ m_impl->GarbageCollect();
}
- 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)
+ auto ThreadPoolSchema::GetMaxContiguousAllocationSize() const -> size_type
{
- m_pageAllocator = &AllocatorInstance::Get(); // use the SystemAllocator if no page allocator is provided
+ return m_impl->m_maxAllocationSize;
}
- if (m_numStaticPages)
+
+ //=========================================================================
+ // NumAllocatedBytes
+ // [11/1/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::NumAllocatedBytes() const
{
- // 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)
+ size_type bytesAllocated = 0;
{
- Page* page = new(memBlock+pageDataSize)Page(m_threadPoolGetter());
- page->m_bin = 0xffffffff;
- PushFreePage(page);
- memBlock += m_pageSize;
+ 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;
}
-}
-//=========================================================================
-// ~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.
+ //=========================================================================
+ // Capacity
+ // [11/1/2010]
+ //=========================================================================
+ ThreadPoolSchema::size_type ThreadPoolSchema::Capacity() const
{
- AZStd::lock_guard lock(m_mutex);
- if (!m_threads.empty())
+ 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)
{
- for (size_t i = 0; i < m_threads.size(); ++i)
+ 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