You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
"""
|
|
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
|
|
"""
|
|
|
|
def InstantiatePrefab_FromCreatedPrefabWithSingleEntity():
|
|
|
|
from pathlib import Path
|
|
CAR_PREFAB_FILE_NAME = Path(__file__).stem + 'car_prefab'
|
|
|
|
from editor_python_test_tools.editor_entity_utils import EditorEntity
|
|
from editor_python_test_tools.utils import Report
|
|
from editor_python_test_tools.prefab_utils import Prefab
|
|
|
|
import Prefab.tests.PrefabTestUtils as prefab_test_utils
|
|
|
|
prefab_test_utils.open_base_tests_level()
|
|
|
|
# Creates a new entity at the root level
|
|
car_entity = EditorEntity.create_editor_entity()
|
|
car_prefab_entities = [car_entity]
|
|
|
|
# Creates a prefab from the new entity
|
|
car_prefab, car_prefab_instance = Prefab.create_prefab(car_prefab_entities, CAR_PREFAB_FILE_NAME)
|
|
|
|
# Instantiate another instance and verify
|
|
car_prefab_instance_2 = car_prefab.instantiate()
|
|
assert car_prefab_instance_2.is_valid(), "Failed to instantiate prefab"
|
|
|
|
if __name__ == "__main__":
|
|
from editor_python_test_tools.utils import Report
|
|
Report.start_test(InstantiatePrefab_FromCreatedPrefabWithSingleEntity)
|