Пример #1
0
 public InspectorButtonAttribute(InspectorDiplayMode mode = InspectorDiplayMode.AlwaysEnabled,
                                 string methodName        = "")
 {
     Mode       = mode;
     MethodName = methodName;
 }
Пример #2
0
 public InspectorButtonAttribute(string methodName)
 {
     Mode       = InspectorDiplayMode.AlwaysEnabled;
     MethodName = methodName;
 }
Пример #3
0
 public InspectorReadOnlyAttribute(InspectorDiplayMode mode)
 {
     m_Mode = mode;
 }