Example #1
0
 public StringPopupDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(drawerProperty, attr)
 {
 }
Example #2
0
 public IntSliderDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(drawerProperty, attr)
 {
 }
Example #3
0
 public OpenFilePathDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(drawerProperty, attr)
 {
 }
Example #4
0
 public static PropertyDrawer CreatePropertyDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr)
 {
     if (attrDrawerDic.TryGetValue(attr.GetType(), out Type drawerType))
     {
         return((PropertyDrawer)Activator.CreateInstance(drawerType, drawerProperty, attr));
     }
     return(null);
 }
 public EnumButtonDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(drawerProperty, attr)
 {
 }
 protected PropertyDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(attr)
 {
     DrawerProperty = drawerProperty;
 }
Example #7
0
 public MultilineTextDrawer(NativeDrawerProperty drawerProperty, PropertyDrawerAttribute attr) : base(drawerProperty, attr)
 {
 }