Version: 2021.3
언어: 한국어

MonoImporter.GetDefaultReference

매뉴얼로 전환
public Object GetDefaultReference (string name);

파라미터

name The name of a public field in the imported MonoScript.

반환

Object The Unity object to use as a default value for the given reference field.

설명

Gets the default value for a reference field in the imported MonoScript.

using UnityEngine;
using UnityEditor;

class Example { [MenuItem("Examples/Get Default Reference")] public static void GetDefaultReference() { var assetPath = "Assets/MyMonoBehaviour.cs"; var monoImporter = AssetImporter.GetAtPath(assetPath) as MonoImporter; var value = monoImporter.GetDefaultReference("MyGameObject"); Debug.Log($"Default reference for MyGameObject in {monoImporter.GetScript().GetClass().FullName} is {value}"); } }