Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

ProTips

Aaron edited this page Feb 5, 2018 · 3 revisions

2D Platformer Controller Tutorial

Quality of Life Shortcuts

  • You have static access to the Main Camera component in any script by referencing UnityEngine.Camera.main.
    • You can access any other component via the component reference, for example: UnityEngine.Camera.main.gameObject.transform.position = new Vector3(0, 0, 0);