“Zapisz zmienną jedność” Kod odpowiedzi

Zapisz zmienną jedność

//set any string value
PlayerPrefs.SetString("varName", "any string info here");

//Get any string value
Text.text = PlayerPrefs.GetString("varName", "if nothing found this text return");

PlayerPrefs.SetFloat
PlayerPrefs.SetInt

PlayerPrefs.GetFloat
PlayerPrefs.GetInt
HImel

Jak zrobić zmienną jedność

public GameObject objectName; //creates a gameobject with the name "objectName"
private float myDecimal = 0.25f; //creates a float with the name "myDecimal";
//note that decimal floats have to end with 'f' and floats can be any numerical value.
Better Bee

Odpowiedzi podobne do “Zapisz zmienną jedność”

Pytania podobne do “Zapisz zmienną jedność”

Więcej pokrewnych odpowiedzi na “Zapisz zmienną jedność” w C#

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

Przeglądaj inne języki kodu