void Awake()
	{
		if (mover == null)
		{
			mover = GetComponent<SimpleMover>();
		}
		if (tracer == null)
		{
			tracer = GetComponent<Tracer>();
		}
		if (conversationScore == null)
		{
			conversationScore = GetComponent<ConversationScore>();
		}

		partnerLine = GetComponent<LineRenderer>();
	}
    void Awake()
    {
        if (mover == null)
        {
            mover = GetComponent <SimpleMover>();
        }
        if (tracer == null)
        {
            tracer = GetComponent <Tracer>();
        }
        if (conversationScore == null)
        {
            conversationScore = GetComponent <ConversationScore>();
        }

        partnerLine = GetComponent <LineRenderer>();
    }
    // // // // // //

    void Awake()
    {
        if (mover == null)
        {
            mover = GetComponent <SimpleMover>();
        }
        if (tracer == null)
        {
            tracer = GetComponent <Tracer>();
        }
        if (conversationScore == null)
        {
            conversationScore = GetComponent <ConversationScore>();
        }
        if (conversingSpeed == null)
        {
            conversingSpeed = GetComponent <ConversingSpeed>();
        }

        partnerLine = GetComponent <LineRenderer>();

        pointsGlobal = GameObject.FindGameObjectWithTag("Global Points");
    }
	// // // // // //

	void Awake()
	{
		if (mover == null)
		{
			mover = GetComponent<SimpleMover>();
		}
		if (tracer == null)
		{
			tracer = GetComponent<Tracer>();
		}
		if (conversationScore == null)
		{
			conversationScore = GetComponent<ConversationScore>();
		}
		if (conversingSpeed == null)
		{
			conversingSpeed = GetComponent<ConversingSpeed>();
		}
		
		partnerLine = GetComponent<LineRenderer>();
		
		pointsGlobal = GameObject.FindGameObjectWithTag("Global Points");
	}