Quantcast
Channel: Latest Questions by S_Darkwell
Viewing all articles
Browse latest Browse all 40

Insert new custom class element with _default_ values to a SerializedProperty array?

$
0
0
In a custom inspector, I am adding a new custom class "DSReaction" element to a native array named "reactions" obtained via a SerializedProperty. To add the new element to the "reactions" array, I'm using the "InsertArrayElementAtIndex" function. Here is a stripped-down version of the code: using UnityEditor; [CustomEditor(typeof(DSReacter))] public class DSReacterEditor : Editor { private DSReacter T; private SerializedObject Reactor; private SerializedProperty reactions; private void OnEnable() { T = target as DSReacter; Reactor = new SerializedObject(T); reactions = Reactor.FindProperty("reactions"); } public override void OnInspectorGUI() { Reactor.UpdateIfDirtyOrScript(); if (GUILayout.Button("New Reaction")) reactions.InsertArrayElementAtIndex(0); Reactor.ApplyModifiedProperties(); } } Unfortunately, if the array is not empty, this automatically creates the new element using the variable valuables of the preceding element. **How can I add a new element, but have it retain the *default* class variable values, as opposed to the values of the preceding element?** Thank you in advance, and be well! \- S.

Viewing all articles
Browse latest Browse all 40

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>