Sfoglia il codice sorgente

Increase textbox limit to 999

Bepis 6 anni fa
parent
commit
98363bbddb
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Plugins/InputUnlocker/InputUnlocker.cs

+ 1 - 1
Plugins/InputUnlocker/InputUnlocker.cs

@@ -15,7 +15,7 @@ namespace InputUnlocker
         {
             foreach (UnityEngine.UI.InputField gameObject in GameObject.FindObjectsOfType<UnityEngine.UI.InputField>())
             {
-                gameObject.characterLimit = 99;
+                gameObject.characterLimit = 999;
             }
         }