Skip to content

Commit fd5a35f

Browse files
adding underscore to allowed chars to input field
1 parent 7425c1b commit fd5a35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/BossRoom/Scripts/Client/UI/PopupPanel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class PopupPanel : MonoBehaviour
5959

6060
private const string k_DefaultConfirmText = "OK";
6161

62-
static readonly char[] k_InputFieldIncludeChars = new[] { '.' };
62+
static readonly char[] k_InputFieldIncludeChars = new[] { '.', '_' };
6363

6464
/// <summary>
6565
/// Setup this panel to be a panel view to have the player enter the game, complete with the ability for the player to

0 commit comments

Comments
 (0)