デフォルト値にリセットします
Reset はインスペクターのコンテキストメニューにある Reset ボタンやコンポーネントを初めて追加するときに呼び出されます。 この関数はエディターモードのみで呼び出されます。Reset はインスペクターでデフォルト値を設定するときにもっともよく使用されます。
// Sets target to a default value. // This could be used in a follow camera.
using UnityEngine;
public class Example : MonoBehaviour { public GameObject target;
void Reset() { //Output the message to the Console Debug.Log("Reset"); if (!target) target = GameObject.FindWithTag("Player"); } }