Files
ChatGPT_CustomerSup/Assets/Scripts/VRSwitch.cs
2023-11-28 11:38:59 +05:30

21 lines
388 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class VRSwitch : MonoBehaviour
{
public RectTransform canvas;
public RectTransform vrCanvas;
public GameObject[] hideForVR;
void Start()
{
// if(Application.platform == RuntimePlatform.)
}
// Update is called once per frame
void Update()
{
}
}