nodes in street

This commit is contained in:
Janis
2022-12-02 17:30:00 +01:00
parent f6cc7080e4
commit f0cbf7239e
10 changed files with 384 additions and 58 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
public class PrefabDictionary : MonoBehaviour
{
public static PrefabDictionary instance;
public GameObject nodePrefab;
void Awake()
{
if (instance == null)
instance = this;
}
}