aa3212689
5/30/2017 - 9:59 AM

MonoBehaviour

MonoBehaviour

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    private GameObject target;
    void Awake() {
        target = GameObject.FindWithTag("Player");
    }
}