version 2.0.0

This commit is contained in:
srl87
2023-09-14 18:17:47 +08:00
parent 13e9d00b37
commit ca21423a06
953 changed files with 125887 additions and 21229 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace VIVE.OpenXR {
public class DisableVisibilityMask
{
static GameObject Provider;
[RuntimeInitializeOnLoadMethod]
static void Start()
{
Provider = new GameObject();
Provider.AddComponent<VisibilityMaskDisabler>();
}
}
}