版本: Unity 6 (6000.0)
语言英语
  • C#

SerializedProperty.GetEndProperty

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每个建议更改,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public SerializedProperty GetEndProperty();

声明

public SerializedProperty GetEndProperty(bool includeInvisible);

描述

检索定义此属性结束范围的 SerializedProperty。

它是第一个不是此属性的子级或孙级属性的属性。可以使用 EqualContents 来遍历属性的所有子级,直到到达结束属性。

using UnityEditor;
using UnityEngine;

public class GetEndPropertyExample : ScriptableObject { public Vector2 m_vector2 = new Vector2(1.0f, 2.0f); public bool m_bool = false;

[MenuItem("Example/SerializedProperty GetEndProperty Example")] static void Example() { GetEndPropertyExample obj = ScriptableObject.CreateInstance<GetEndPropertyExample>(); SerializedObject serializedObject = new SerializedObject(obj); SerializedProperty property = serializedObject.FindProperty("m_vector2");

// Visit the x, y values of the vector, stopping once m_bool is reached var endOfChildrenIteration = property.GetEndProperty(); while (property.NextVisible(true) && !SerializedProperty.EqualContents(property, endOfChildrenIteration)) { Debug.Log(property.propertyPath + " : " + property.floatValue); } } }