Scene template unity что это

Scene Templates

To create new scenes, Unity copies scene A 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 Camera A 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:

Important concepts

Built-in templates vs. user-defined templates

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.

Templates and scene dependencies

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.

Cloning template assets

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.

Referencing template assets

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.

Источник

Scene Templates

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:

Important concepts

Built-in templates vs. user-defined templates

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.

Templates and scene dependencies

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.

Cloning template assets

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.

Referencing template assets

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.

Источник

Scene Templates

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:

Important concepts

Built-in templates vs. user-defined templates

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.

Templates and scene dependencies

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.

Cloning template assets

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.

Referencing template assets

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.

Источник

Scenes

When you create a new project and open it for the first time, Unity opens a sample scene that contains only a Camera A 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.

Scene template unity что это. NewEmptyScene 01. Scene template unity что это фото. Scene template unity что это-NewEmptyScene 01. картинка Scene template unity что это. картинка NewEmptyScene 01The default Unity sample scene, which contains a Main Camera and a directional Light

For information about working with scenes, see Creating, loading, and saving scenes.

Scene Templates

Unity uses scene templates to create new scenes. Scene templates are assets that are stored in a project. They are similar to scenes, but are designed to be copied rather than used directly.

For information about creating and using scene templates, see Scene templates.

The New Scene dialog

The New Scene dialog opens when you create a new scene from the File menu: (File > New Scene) or the Ctrl/Cmd + n shortcut. Use it to create new scenes from specific scene templates in your project, and get information about existing templates.

Scene template unity что это. scene template new scene dialog. Scene template unity что это фото. Scene template unity что это-scene template new scene dialog. картинка Scene template unity что это. картинка scene template new scene dialog
The New Scene dialog

Creating a new scene

To create a new scene from the New Scene dialog, select a template from the templates list, and click Create. For a detailed description of creating a scene this way, see Creating a new scene from the New Scene dialog.

Pinning templates

Pinned templates appear before other templates in the New Scene dialog’s template list. The last template pinned appears at the top of the list.

Click any template’s pin icon to pin it.

Scene template unity что это. scene template pin. Scene template unity что это фото. Scene template unity что это-scene template pin. картинка Scene template unity что это. картинка scene template pin

Locating and editing templates

When you select a template in the New Scene dialog, the details pane displays the path to the template (1 in the image below).

To open the template in an Inspector window and edit its properties, select the Edit link (3 in the image below).

Scene template unity что это. scene template locate edit. Scene template unity что это фото. Scene template unity что это-scene template locate edit. картинка Scene template unity что это. картинка scene template locate edit

Multi-scene editing

You can open multiple scenes for editing at the same time. For details, see Multi-scene editing.

Источник

Scene Templates

To create new scenes, Unity copies scene 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 Camera 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:

Important concepts

Built-in templates vs. user-defined templates

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.

Templates and scene dependencies

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.

Cloning template assets

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.

Referencing template assets

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.

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *