このページでは、シーンの 作成、ロード、保存 の方法について説明します。
新しいシーンを作るにはいくつかの方法があります。
Unity は、すべての新しいシーンをシーンテンプレートから作成します。シーンテンプレートの作成と管理については、シーンテンプレート を参照してください。
New Scene ダイアログを使って、プロジェクト内の特定のシーンテンプレートから新しいシーンを作成します。また、New Scene ダイアログを使って、シーンテンプレートの検索や管理を行うこともできます。詳細は、New Scene ダイアログ を参照してください。
デフォルトでは、メニュー (File > New Scene) またはショートカット (Ctrl/Cmd + n) で新規シーンを作成すると、New Scene ダイアログが開きます。
新しいシーンの作成は、以下のように行います。
ノート |
---|
追加ロードとは、開いている他のシーンに加えて、シーンをロードすることを意味します。詳しくは、マルチシーン編集 を参照してください。 |
テンプレートが クローン可能な依存関係 を持たない場合、Unity は新しいシーンをメモリに読み込みますが、保存はしません。
テンプレートに クローン可能な依存関係がある場合、Unity は Project 内の場所を保存先として選択するように指示します。シーンを保存すると、同じ場所に新しいシーンと同じ名前のフォルダーを作成します。その後、クローン可能な依存関係のクローンを新しいフォルダーに作成し、テンプレートシーンで使用されている元のアセットの代わりに、クローンアセットを使用するように新しいシーンを更新します。
メニュー (Assets > Create > Scene) を使うと、New Scene ダイアログを開かずに新しいシーンを作ることができます。
メニューから新しいシーンを作成すると、Unity は自動的にプロジェクトの Basic テンプレートをコピーし、Project ウィンドウで現在開いているフォルダーに新しいシーンを加えます。
Project ウィンドウのコンテキストメニューを使うと、New Scene ダイアログを開かずに新しいシーンを作ることができます。
メニューから新しいシーンを作成すると、Unity は自動的にプロジェクトの Basic テンプレートをコピーし、選択したフォルダーに新しいシーンを加えます。
C# スクリプトから特定のシーンテンプレートを使用して新しいシーンを作成するには、** Instantiate** メソッド を使います。
Tuple<Scene, SceneAsset> SceneTemplate.Instantiate(SceneTemplateAsset sceneTemplate, bool loadAdditively, string newSceneOutputPath = null);
Instantiate
メソッドは、シーンテンプレートから新しいシーンをインスタンス化します。このメソッドは、新しく作成された Scene
ハンドルと、それに一致する SceneAsset
を返します。このシーンは、追加的に作成することができます。シーンに アセットが含まれていて、それをクローン化する必要がある場合、シーンをディスクに保存するためのパスを指定する必要があります。
スクリプト、または New Scene ダイアログを使ってテンプレートから新しいシーンを作成すると、Unityは イベント を発生させます。Unity は、テンプレートがインスタンス化され、かつ、EditorSceneManager.newSceneCreated
か EditorSceneManager.sceneOpened
イベントも発生させた後に、このイベントを発生させます。
public class SceneTemplate
{
public delegate void NewTemplateInstantiated(SceneTemplateAsset sceneTemplateAsset, Scene scene, SceneAsset sceneAsset, bool additiveLoad);
public static event NewTemplateInstantiated newSceneTemplateInstantiated;
}
シーンを開くには、以下のいずれかの操作を行います。
現在のシーンに保存していない変更が含まれている場合、Unity はシーンを保存するか、変更を破棄するかを尋ねてきます。
複数のシーンを同時に開いて編集することができます。詳しくは、複数シーンの編集 を参照してください。
現在作業中のシーンを保存するには、メニューから File > Save Scene を選択するか、Ctrl + S (Windows) または Cmd + S (macOS) を押します。
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.