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

SerializedProperty.DuplicateCommand

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public bool DuplicateCommand();

描述

复制 SerializedProperty 引用的数组元素。

用于在数组中插入另一个元素,初始化为与 SerializedProperty 相同的内容。其他资源:InsertArrayElementAtIndex

using UnityEditor;
using UnityEngine;

public class SerializedPropertyDuplicateCommandExample : ScriptableObject { public string[] m_Data;

[MenuItem("Example/SerializedProperty/DuplicateCommand Example")] static void MenuCallback() { SerializedPropertyDuplicateCommandExample obj = ScriptableObject.CreateInstance<SerializedPropertyDuplicateCommandExample>(); obj.m_Data = new string[] { "A", "B", "C" };

SerializedObject serializedObject = new SerializedObject(obj); SerializedProperty arrayProperty = serializedObject.FindProperty("m_Data");

SerializedProperty element1 = arrayProperty.GetArrayElementAtIndex(1); element1.DuplicateCommand(); element1.DuplicateCommand();

// Last entry has been shifted from index 2 to index 4 SerializedProperty lastElement = arrayProperty.GetArrayElementAtIndex(4); lastElement.DuplicateCommand();

serializedObject.ApplyModifiedProperties();

// Outputs "A B B B C C" Debug.Log("Final array contents: " + string.Join(" ", obj.m_Data)); } }