The Swartz-Manning’s first exhibit will provide a detailed history of Aaron Swartz Day. https://www.aaronswartzday.org/vr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MultiXRMasterControl.cs 500B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MultiXR
  5. {
  6. public enum MultiXRSDK
  7. {
  8. VRTK,
  9. VRChat,
  10. Unknown
  11. }
  12. public class MultiXRMasterControl : MonoBehaviour
  13. {
  14. public static MultiXRSDK currentXRSDK = MultiXRSDK.VRTK;
  15. // Use this for initialization
  16. void Start()
  17. {
  18. }
  19. // Update is called once per frame
  20. void Update()
  21. {
  22. }
  23. }
  24. }