InputDeviceGGT26DofPartUI.cs 510 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using UnityEngine;
  3. namespace SC.XR.Unity.Module_InputSystem.InputDeviceHand.GGT26Dof {
  4. public class InputDeviceGGT26DofPartUI : InputDeviceHandPartUI {
  5. public InputDeviceGGT26DofPart inputDeviceGGT26DofPart {
  6. get {
  7. return inputDevicePartBase as InputDeviceGGT26DofPart;
  8. }
  9. }
  10. public ModelGGT26Dof modelGGT26Dof {
  11. get {
  12. return modelBase as ModelGGT26Dof;
  13. }
  14. }
  15. }
  16. }