Ejemplo n.º 1
0
 public EditorEntry(string str, SerializedProperty prop)
 {
     Property = prop;
     String   = str;
     Length   = EditorHelpers.GetStringLengthinPix(String);
 }
Ejemplo n.º 2
0
 public EditorEntry(SerializedProperty prop)
 {
     Property = prop;
     String   = prop.displayName;
     Length   = EditorHelpers.GetStringLengthinPix(String);
 }
Ejemplo n.º 3
0
 public EditorString(string str)
 {
     String = str;
     Length = EditorHelpers.GetStringLengthinPix(String);
 }