Reload Domain (ドメインの再ロード) はスクリプトの状態をリセットします。これは、デフォルトで有効になっています。完全に新しいスクリプト状態を提供し、再生モードに入るたびにすべての静的フィールドと登録されたハンドラーをリセットします。つまり、Unity エディターで再生モードに入るたびに、プロジェクトはビルドで最初に起動したときと非常によく似た方法で再生を開始します。
Reload Domain には時間がかかります。この時間は、プロジェクト内のスクリプトの数と複雑さに伴い増加します。再生モードに入るのに長い時間がかかると、プロジェクトを素早く繰り返すのが難しくなります。そのため、Unity は Reload Domain を無効にするオプションを提供しています。
Reload Domain を無効にするには以下を行います。
詳しくは、Play Mode の設定方法 を参照してください。
Reload Domain を無効にすると、Unity は毎回スクリプトの状態をリセットしないため、再生モードへの移行がより速くなります。ただし、再生モードにしたときにスクリプトの状態をリセットするかどうかは、ユーザーが決定します。これを行うには、再生モードの開始時にスクリプトの状態をリセットするコードを追加する必要があります。
Reload Domain が無効になっている場合でも、スクリプトを更新または再インポートすると、自動更新の設定 に基づいて Unity はスクリプトの状態を更新します。
再生モードでスクリプティングの状態が正しく再生モードをリセットするには、スクリプトの静的フィールドと静的イベントハンドラーを調整する必要があります。
Reload Domain が無効になっている場合、 コードの 静的フィールド の値は自動的に元の値にリセットされません。これを明示的に行うコードを追加する必要があります。
次のコード例には、ユーザーが Jump ボタンを押すとインクリメントする静的カウンターフィールドがあります。Reload Domain を有効にすると、再生モードに入るときにカウンターは自動的にゼロにリセットされます。Reload Domain を無効にすると、カウンターはリセットされません。再生モードの内外で値を維持します。これは、エディターでプロジェクトを 2 回目に実行するときに、前回の実行でカウンターが変更された場合、カウンターがゼロにならない場合があることを意味します。
using UnityEngine;
public class StaticCounterExample : MonoBehaviour
{
// Domain Reloading が無効になっている場合、この counter はゼロにリセットされません
static int counter = 0;
// Update は、フレームごとに1度呼ばれます
void Update()
{
if (Input.GetButtonDown("Jump"))
{
counter++;
Debug.Log("Counter: " + counter);
}
}
}
Reload Domain が無効な場合でもカウンターが確実にリセットされるようにするには、[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)] 属性を使用し、値を明示的にリセットする必要があります。
using UnityEngine;
public class StaticCounterExampleFixed : MonoBehaviour
{
static int counter = 0;
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)]
static void Init()
{
Debug.Log("Counter reset.");
counter = 0;
}
// Update は、フレームごとに1度呼ばれます
void Update()
{
if (Input.GetButtonDown("Jump"))
{
counter++;
Debug.Log("Counter: " + counter);
}
}
}
Reload Domain を無効にすると、再生モードを終了しても、静的イベントハンドラーからメソッドの登録が解除されません。静的イベントハンドラーでメソッドを登録するコードがある場合は、問題になる可能性があります。例えば、エディターでプロジェクトを最初に再生したとき、メソッドは通常通り登録されます。ただし、プロジェクトの 2 回目の再生では、これらのメソッドは最初の再生に加えて 2 回目の登録がされ、イベントが発生すると 2 回呼び出されます。
例えば、このコードはメソッドを、静的イベントハンドラー Application.quitting
で登録します。Reload Domain を有効にすると、Unity は再生モードの開始時にイベントハンドラーを自動的にリセットするため、メソッドは一度だけ登録されます。ただし、Reload Domain を無効にすると、イベントハンドラーはクリアされないため、エディターでプロジェクトを 2 回目に実行すると、 メソッドは 2 回登録され、イベントが発生すると 2 回呼び出されます。これは通常は望ましくありません。
using UnityEngine;
public class StaticEventExample : MonoBehaviour
{
void Start()
{
Debug.Log("Registering quit function");
Application.quitting += Quit;
}
static void Quit()
{
Debug.Log("Quitting!");
}
}
Reload Domain が無効になっている場合、上記の例では、再生モードに入るたびに Quit
メソッドが再度追加されます。これにより、再生モードを終了するたびに “Quitting!” というメッセージが表示されます。
Reload Domain が無効な場合でもイベントハンドラーが確実にリセットされるようにするには、[RuntimeInitializeOnLoadMethod] 属性を使用し、メソッドを明示的に登録解除して、2 回追加されないようにする必要があります。
using UnityEngine;
public class StaticEventExampleFixed : MonoBehaviour
{
[RuntimeInitializeOnLoadMethod]
static void RunOnStart()
{
Debug.Log("Unregistering quit function");
Application.quitting -= Quit;
}
void Start()
{
Debug.Log("Registering quit function");
Application.quitting += Quit;
}
static void Quit()
{
Debug.Log("Quitting the Player");
}
}
ランタイムスクリプトの場合、 静的フィールドとイベントハンドラーをリセットするには、 [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)]
属性を使用する必要があります。
静的を使用するカスタムエディターウィンドウやインスペクターなどのエディタースクリプトでは、静的フィールドとイベントハンドラーをリセットするために [InitializeOnEnterPlayMode]
属性を使用する必要があります。
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.