Version: 2022.1
언어: 한국어

SerializedProperty.exposedReferenceValue

매뉴얼로 전환
public Object exposedReferenceValue ;

설명

A reference to another Object in the Scene. This reference is resolved in the context of the SerializedObject containing the SerializedProperty.

using UnityEngine;
using UnityEditor;

public class SerializedPropertyTest : MonoBehaviour { public Object mComponent1; public Object mComponent2;

void Start() { var timeline = Resources.Load("myTimeline"); var so1 = new SerializedObject(timeline, mComponent1); var so2 = new SerializedObject(timeline, mComponent2);

var theCamera = so1.FindProperty("sceneCamera").exposedReferenceValue; var anotherCamera = so2.FindProperty("sceneCamera").exposedReferenceValue; } }

In this example, the same asset is loaded into two different contexts, `mComponent1` and `mComponent2`. The same object (called “sceneCamera”) in each context resolves to a different reference to a different Camera Object.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961