YotogiOldCommandMenuOVRWithChubLip.cs 452 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using UnityEngine;
  3. public class YotogiOldCommandMenuOVRWithChubLip : MonoBehaviour
  4. {
  5. public bool Next()
  6. {
  7. return false;
  8. }
  9. public bool Prev()
  10. {
  11. return false;
  12. }
  13. public void Enter()
  14. {
  15. }
  16. [SerializeField]
  17. private RectTransform command_panel_;
  18. [SerializeField]
  19. private RectTransform clone_src_;
  20. [SerializeField]
  21. private VRCommandMenuDrawManager command_draw_mgr_;
  22. [SerializeField]
  23. private bool is_commandloop_;
  24. }