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.

VRC_YouTubeSyncEditor.cs 473B

1234567891011121314151617181920
  1. #if UNITY_EDITOR
  2. using UnityEngine;
  3. using UnityEditor;
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.IO;
  8. namespace VRCSDK2
  9. {
  10. [CustomEditor(typeof(VRC_YouTubeSync))]
  11. public class VRC_YouTubeSyncEditor : Editor
  12. {
  13. public override void OnInspectorGUI()
  14. {
  15. EditorGUILayout.HelpBox("This component is deprecated, please use the VRC_SyncVideoPlayer component instead.", MessageType.Error);
  16. }
  17. }
  18. }
  19. #endif