튜토리얼과 같이 GUI Text를 생성할 수 없습니다. Create Empty Object 후에 Component → Rendering → GUIText 를 추가해야 합니다
Assets
Prefabs
PickUp : pickup들에 공통적으로 스크립트를 적용합니다.
Scenes
MiniGame : 메인 화면
Scripts
CameraController
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using UnityEngine; using System.Collections;
publicclassCameraController : MonoBehaviour {
public GameObject player; private Vector3 offset;
// Use this for initialization voidStart () { offset = transform.position; } // Update is called once per frame voidLateUpdate () { transform.position = player.transform.position + offset; } }