InputDeviceGGT26DofPartUI.cs 742 B

12345678910111213141516171819202122232425262728
  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. public override void UpdateTransform()
  17. {
  18. if (Application.platform != RuntimePlatform.Android)
  19. {
  20. base.UpdateTransform();
  21. }
  22. }
  23. }
  24. }