Driving UI

This commit is contained in:
2024-04-26 12:59:34 +02:00
parent 8405f137d6
commit 4eee1a278b
5 changed files with 473 additions and 21 deletions

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);
}
}