Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ShowGamepadTextInput()

override bool Terraria.Social.Steam.OverlaySocialModule.ShowGamepadTextInput ( string description,
uint maxLength,
bool multiLine = false,
string existingText = "",
bool password = false )
inline

Definition at line 26 of file OverlaySocialModule.cs.

27 {
29 {
30 return false;
31 }
32 bool num = SteamUtils.ShowGamepadTextInput((EGamepadTextInputMode)(password ? 1 : 0), (EGamepadTextInputLineMode)(multiLine ? 1 : 0), description, maxLength, existingText);
33 if (num)
34 {
36 }
37 return num;
38 }

References Terraria.Social.Steam.OverlaySocialModule._gamepadTextInputActive.