“Сохранить переменную единство” Ответ

Сохранить переменную единство

//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

Как сделать переменное единство

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

Ответы похожие на “Сохранить переменную единство”

Вопросы похожие на “Сохранить переменную единство”

Больше похожих ответов на “Сохранить переменную единство” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования