Built out a simple level with some puzzles

This commit is contained in:
2018-04-21 21:46:34 +10:00
parent a8741ccc26
commit 011a1ce0c3
37 changed files with 12006 additions and 93 deletions
+22
View File
@@ -0,0 +1,22 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CameraController : MonoBehaviour {
public GameObject player;
private Vector3 offset;
// Use this for initialization
void Awake () {
if (player != null) {
offset = transform.position - player.transform.position;
}
}
// Update is called once per frame
void Update () {
if (player != null) {
transform.position = player.transform.position + offset;
}
}
}