InputDeviceGGT26DofPartUI.cs 541 B

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