“Wartość Unity Int Inputfield” Kod odpowiedzi

Jak używać jedności pola wejściowego

public string theName;
    public GameObject inputField;
    public GameObject textDisplay;
    
    public void StoreName()
    {
        theName = inputField.GetComponent<Text>().text;
        textDisplay.GetComponent<Text>().text = theName;
    }
Dull Dingo

Wartość Unity Int Inputfield

InputField input;
 int integer_Value_we_Want;
 
  integer_Value_we_Want = int.Parse(input.text); //for integer 
  integer_Value_we_Want = float.Parse(input.text); //for float
  integer_Value_we_Want = double.Parse(input.text); //for double
Lazy Ladybird

Odpowiedzi podobne do “Wartość Unity Int Inputfield”

Pytania podobne do “Wartość Unity Int Inputfield”

Więcej pokrewnych odpowiedzi na “Wartość Unity Int Inputfield” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu