Пример #1
0
 public EditorEntry(string str, SerializedProperty prop)
 {
     Property = prop;
     String   = str;
     Length   = EditorHelpers.GetStringLengthinPix(String);
 }
Пример #2
0
 public EditorEntry(SerializedProperty prop)
 {
     Property = prop;
     String   = prop.displayName;
     Length   = EditorHelpers.GetStringLengthinPix(String);
 }
Пример #3
0
 public EditorString(string str)
 {
     String = str;
     Length = EditorHelpers.GetStringLengthinPix(String);
 }