お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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与えられたプレハブをインスタンス化します。
これはインスタンス化に似ていますが、プレハブにプレハブを接続させます。
@MenuItem("Examples/Instantiate Selected") static function CreatePrefab() { var clone : GameObject = PrefabUtility.InstantiatePrefab(Selection.activeObject as GameObject) as GameObject; } @MenuItem("Examples/Instantiate Selected", true) static function ValidateCreatePrefab() { GameObject go = Selection.activeObject as GameObject; if (go == null) return false; return PrefabUtility.GetPrefabType(go) == PrefabType.Prefab || PrefabUtility.GetPrefabType(go) == PrefabType.ModelPrefab; }