Version: 2021.3
public static bool EqualContents (SerializedProperty x, SerializedProperty y);

描述

查看包含的序列化属性是否相等。

using UnityEditor;
using UnityEngine;

public class EqualContentsExample : ScriptableObject { public int m_A = 4; public int m_B = 4;

[MenuItem("Example/SerializedProperty EqualContents Example")] static void Example() { EqualContentsExample obj = ScriptableObject.CreateInstance<EqualContentsExample>(); SerializedObject serializedObject = new SerializedObject(obj);

SerializedProperty propertyA = serializedObject.FindProperty("m_A"); SerializedProperty propertyB = serializedObject.FindProperty("m_B");

// False because pointing to different properties Debug.Log("EqualContents : " + SerializedProperty.EqualContents(propertyA, propertyB));

// True because both have value 4 Debug.Log("DataEquals : " + SerializedProperty.DataEquals(propertyA, propertyB)); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961