Files

11 lines
266 B
C#

using System.Collections.Generic;
using UnityEngine;
public class keepDisplayingObject : MonoBehaviour
{
public GameObject topPanel;
public GameObject bottomPanel;
[Header("dont display on")]
public List<string> sceneNames= new List<string>();
}