Added checkpoints

This commit is contained in:
2021-07-21 09:33:24 +02:00
parent 47dd7e8504
commit 1998f2baf8
71 changed files with 1080 additions and 192 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SpawnStorage : MonoBehaviour
{
// Start is called before the first frame update
public Vector3 spawnpoint;
void Start()
{
spawnpoint = transform.position;
}
}