Version: 2021.3

SerializedProperty.GetArrayElementAtIndex

切换到手册
public SerializedProperty GetArrayElementAtIndex (int index);

描述

返回数组中指定索引处的元素。

See Also: isArray, arraySize.

using UnityEditor;
using UnityEngine;

public class ArrayExample : ScriptableObject { public int[] m_data;

[MenuItem("Example/SerializedProperty GetArrayElementAtIndex Example")] static void Example() { ArrayExample obj = ScriptableObject.CreateInstance<ArrayExample>(); obj.m_data = new int[] { 3, 2, 1 };

SerializedObject serializedObject = new SerializedObject(obj); SerializedProperty property = serializedObject.FindProperty("m_data");

for (int i = 0; i < property.arraySize; i++) { SerializedProperty element = property.GetArrayElementAtIndex(i);

//Will print //m_data.Array.data[0] : 3 //m_data.Array.data[1] : 2 //m_data.Array.data[2] : 1 Debug.Log(element.propertyPath + " : " + element.intValue); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961