To create new scenes, Unity copies sceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary templates. Think of a scene template as a pre-configured scene that contains all of the content you want to start with. For example, the default Basic template usually contains a CameraA component which creates an image of a particular viewpoint in your scene. The output is either drawn to the screen or captured as a texture. More info
See in Glossary and a light.
You can create your own scene templates to customize the types of new scene you can create in a project. For example, you might create templates for each level in a game so that everyone working on the project can start their scenes with the correct assets and configuration.
You can create a template from any Unity scene. After you create a template, you can create any number of new scenes from it. Like scenes, most scene templates are assets that are stored in the project.
This page explains important scene template concepts. For more information about creating, editing, and managing scene templates, see the following pages:
Most scene templates are user-defined, meaning you create them from your own scenes. User-defined scene templates are assets that Unity stores in the project.
Unity also ships with built-in templates for each project type. For example, some project types include a Basic template that creates a scene with a Camera and a light, and an Empty template that creates an empty scene.
Built-in templates are different from other templates because they are not assets stored in the project, and you cannot modify them.
Note: |
---|
Some Unity packages might also include scene templates that they install when you install the package. |
When you create a scene template, you can specify whether Unity clones or references its dependencies (the assets it includes) when you create a new scene from it.
To specify which assets Unity clones for a specific template, edit the template’s properties.
A typical template might contain a mix of cloned and referenced assets. Unity sets several asset types to clone by default.
To change whether Unity clones or references a given asset type by default, edit the Scene template project settings.
Cloned assets are copies of the original assets that the template scene uses. When Unity creates the new scene from the template, it automatically modifies the new scene to use any cloned assets. If you modify the cloned assets, it does not affect the template scene. If you modify the original assets in the template scene, it does not affect the new scene.
Cloning template assets is useful when you want new scenes to contain a starting set of assets that users might modify.
Referenced assets are the original assets that the template scene uses. When Unity creates the new scene from the template, the new scene points to the same assets as the template scene. If you modify those assets, it affects both the new scene and the template scene.
Referencing template assets is useful when you want new scenes to contain a default set of assets that users build on top of, but do not modify.