Image m_Image; //Set this in the Inspector public Sprite m_Sprite; void Start() { //Fetch the Image from the GameObject m_Image = GetComponent<Image>(); } void Update() { //Press space to change the Sprite of the Image if (Input.GetKey(KeyCode.Space)) { m_Image.sprite = m_Sprite; } }
NullReferenceException: Object reference not set to an instance of an object, вроде все указал и именно этой ошибки быть не должно
Длинные полотна кода плохо читаются и засоряют чат. Используйте https://pastebin.com/ для форматирования кода
Обсуждают сегодня