Chaos.Awake C# (CSharp) 메소드

Awake() 공개 메소드

public Awake ( ) : void
리턴 void
    void Awake()
    {
        DontDestroyOnLoad (transform.gameObject);
        crazyObjs = GameObject.FindGameObjectWithTag ("CrazyObjs");
        allCrazies = crazyObjs.GetComponentsInChildren<Transform>();
        //playerLight = GameObject.Find ("PlayerLight").GetComponent<Light>();
    }