コード例 #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
ファイル: EditorHelpers.cs プロジェクト: Hengle/GPG220-AI
 public EditorString(string str)
 {
     String = str;
     Length = EditorHelpers.GetStringLengthinPix(String);
 }