コード例 #1
0
ファイル: I18n.cs プロジェクト: kirinchen/UnityToolUtils
 public string _get(I18nKey k)
 {
     if (string.IsNullOrEmpty(k.category))
     {
         return(_get(k.key));
     }
     else
     {
         return(_get(k.category, k.key));
     }
 }
コード例 #2
0
ファイル: I18n.cs プロジェクト: kirinchen/UnityToolUtils
 public static string get(I18nKey key)
 {
     return(getInstance()._get(key));
 }