Add skybox, fix world map, temporarily break level load to demo stuff

This commit is contained in:
2022-08-14 16:37:55 -07:00
parent dd76b8b9fe
commit fd1cfa36d5
26 changed files with 2704 additions and 695 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
namespace Scampz.GameJam
{
public class RotateCamera : MonoBehaviour
{
[SerializeField]
private float speed;
// Update is called once per frame
void Update()
{
transform.Rotate(0, speed * Time.deltaTime, 0);
}
}
}