void OnEnable()
 {
     list = new SimpleReorderableList(serializedObject, "values");
 }
 /// <summary>
 /// OnEnable
 /// </summary>
 private void OnEnable()
 {
     this.routeDatas = new SimpleReorderableList(this.serializedObject.FindProperty("routeDatas"), typeof(FishRouteData.WithDelay));
     this.eventDatas = new SimpleReorderableList(this.serializedObject.FindProperty("eventDatas"), typeof(FishFormationEventData));
 }
 public UniversalRectSideCornerListProviderProppertyDrawer(SerializedProperty property)
 {
     this.property = property;
     rList         = new SimpleReorderableList(property.serializedObject, property.FindPropertyRelative("sideCornerList"));
 }
Exemple #4
0
 /// <summary>
 /// OnEnable
 /// </summary>
 private void OnEnable()
 {
     this.formationDatas = new SimpleReorderableList(this.serializedObject.FindProperty("formationDatas"), typeof(FishFormationData.WithDelay));
 }
Exemple #5
0
 /// <summary>
 /// OnEnable
 /// </summary>
 private void OnEnable()
 {
     this.routeDatas = new SimpleReorderableList(this.serializedObject.FindProperty("routeDatas"), typeof(FishRouteData.WithProbability));
     this.fishDatas  = new SimpleReorderableList(this.serializedObject.FindProperty("fishDatas"), typeof(FishData));
 }