VoiceSettings.cs 867 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. using Meta.Voice.Hub.Attributes;
  9. using Meta.Voice.Hub.Interfaces;
  10. using Meta.Voice.VSDKHub;
  11. using Meta.Voice.Windows;
  12. using Oculus.Voice.Utility;
  13. using UnityEngine;
  14. namespace Meta.Voice.Hub
  15. {
  16. [MetaHubPage("Settings", VoiceHubConstants.CONTEXT_VOICE, priority: 800)]
  17. public class SettingsWindowPage : SettingsWindow, IMetaHubPage
  18. {
  19. protected override GUIContent Title => new GUIContent("Voice SDK Settings");
  20. protected override Texture2D HeaderIcon => null;
  21. protected override string DocsUrl => VoiceSDKStyles.Texts.VoiceDocsUrl;
  22. public new void OnGUI()
  23. {
  24. base.OnGUI();
  25. }
  26. }
  27. }