• Что не так с GetComponent?

    @Shpex Автор вопроса
    Рональд Макдональд, увы я тоже так сначала думал, но нет, не работает снова ошибка...
  • Что не так с GetComponent?

    @Shpex Автор вопроса
    вот такая ошибка вылазит
    UnassignedReferenceException: The variable output of console has not been assigned.
    You probably need to assign the output variable of the console script in the inspector.
    при вот таком коде
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using UnityEngine.UI;
    
    
    public class console : MonoBehaviour {
    	[SerializeField]
    	public GameObject output ;
    
    	private string newtext = "";
    	private string sctext = "";
    
    	void Awake()
    	{ 
    		output.GetComponent<Text>().text ="loaded...";
    	}
    
    	void Update()
    	{     
    			
    
    	
    	}
    
    	public void Text_Changed(string newText)
    	{
    		output.GetComponent<Text>().text ="1";
    	}
    
    
    }

    p.s драганддроп сделал нормально...