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