Files
racesm/Assets/SkyboxSaver.cs
PokingPines 06756d418a Map selector
2024-04-25 12:57:44 +02:00

13 lines
232 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SkyboxSaver : MonoBehaviour
{
public string skyboxMaterial;
void Awake()
{
DontDestroyOnLoad(this.gameObject);
}
}