Exemplo n.º 1
0
 public string GetVal()
 {
     if (content != null)
     {
         return(content);
     }
     return(LocaleConfig.Get(id));
 }
Exemplo n.º 2
0
 public string SetParams(params object[] param)
 {
     content = LocaleConfig.Get(id, param);
     if (target != null)
     {
         target.text = content;
     }
     return(content);
 }
Exemplo n.º 3
0
 public static void FloatMessage(string message, bool notOverColor = true)
 {
     if (notOverColor)
     {
         _FloatMessage(message);
     }
     else
     {
         _FloatMessage(LocaleConfig.Get(104033, message));
     }
 }