Map selector

This commit is contained in:
PokingPines
2024-04-25 12:57:44 +02:00
parent 31d431cd34
commit 06756d418a
25 changed files with 1188 additions and 43 deletions

12
Assets/SkyboxSaver.cs Normal file
View File

@@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SkyboxSaver : MonoBehaviour
{
public string skyboxMaterial;
void Awake()
{
DontDestroyOnLoad(this.gameObject);
}
}