소스 검색

Increase textbox limit to 999

Bepis 6 년 전
부모
커밋
98363bbddb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
             }
         }