multiple xr toolkit package
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.

VRCPlayerStationEditor.cs 402B

12345678910111213141516171819202122
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEditor;
  5. using System;
  6. [CustomEditor(typeof(VRCSDK2.VRC_Station))]
  7. public class VRCPlayerStationEditor : Editor
  8. {
  9. VRCSDK2.VRC_Station myTarget;
  10. void OnEnable()
  11. {
  12. if(myTarget == null)
  13. myTarget = (VRCSDK2.VRC_Station)target;
  14. }
  15. public override void OnInspectorGUI()
  16. {
  17. DrawDefaultInspector();
  18. }
  19. }