言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

MonoBehaviour.Reset()

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Description

デフォルト値にリセットします

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");
        
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public target as GameObject

	def Reset() as void:
		if not target:
			target = GameObject.FindWithTag('Player')