Added Visual Response on Invalid Input
This commit is contained in:
parent
4cd2a24436
commit
1c097ed28a
@ -5053,7 +5053,7 @@ MonoBehaviour:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 839555747}
|
||||
m_TargetAssemblyTypeName: UsernameValidateSubmit, Assembly-CSharp
|
||||
m_MethodName: ValidateInput
|
||||
m_MethodName: buttonValidateInput
|
||||
m_Mode: 1
|
||||
m_Arguments:
|
||||
m_ObjectArgument: {fileID: 0}
|
||||
|
@ -2,6 +2,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using System.Threading.Tasks;
|
||||
public class UsernameValidateSubmit : MonoBehaviour
|
||||
{
|
||||
private void Start()
|
||||
@ -15,5 +16,54 @@ public class UsernameValidateSubmit : MonoBehaviour
|
||||
{
|
||||
GameObject.Find("GameOverPanel").GetComponent<LeaderboardHandle>().SubmitScores();
|
||||
}
|
||||
else if (Input.GetKeyDown(KeyCode.Return))
|
||||
{
|
||||
FlashRed();
|
||||
}
|
||||
}
|
||||
|
||||
public void buttonValidateInput()
|
||||
{
|
||||
if (GetComponent<InputField>().text.Length == 3)
|
||||
{
|
||||
GameObject.Find("GameOverPanel").GetComponent<LeaderboardHandle>().SubmitScores();
|
||||
}
|
||||
else
|
||||
{
|
||||
FlashRed();
|
||||
}
|
||||
}
|
||||
|
||||
public async void FlashRed()
|
||||
{
|
||||
try
|
||||
{
|
||||
if (GetComponent<InputField>().text != "")
|
||||
{
|
||||
Color defaultColor = GetComponent<InputField>().textComponent.color;
|
||||
GetComponent<InputField>().textComponent.color = Color.red;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().textComponent.color = defaultColor;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().textComponent.color = Color.red;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().textComponent.color = defaultColor;
|
||||
}
|
||||
else
|
||||
{
|
||||
Color defaultColor = GetComponent<InputField>().placeholder.color;
|
||||
GetComponent<InputField>().placeholder.color = Color.red;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().placeholder.color = defaultColor;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().placeholder.color = Color.red;
|
||||
await Task.Delay(100);
|
||||
GetComponent<InputField>().placeholder.color = defaultColor;
|
||||
}
|
||||
}
|
||||
catch (MissingReferenceException)
|
||||
{
|
||||
Debug.Log("Missing Reference: Ignoring Due to Async Winddown");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user