Chaos.Awake C# (CSharp) Method

Awake() public method

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