DragPointMune.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using UnityEngine;
  2. namespace COM3D2.MeidoPhotoStudio.Plugin
  3. {
  4. using Input = InputManager;
  5. public class DragPointMune : DragPointChain
  6. {
  7. private bool isMuneL;
  8. public override void Set(Transform myObject)
  9. {
  10. base.Set(myObject);
  11. isMuneL = myObject.name[5] == 'L'; // Mune_L_Sub
  12. }
  13. protected override void ApplyDragType() => ApplyProperties(CurrentDragType != DragType.None, false, false);
  14. protected override void OnMouseDown()
  15. {
  16. base.OnMouseDown();
  17. meido.SetMune(false, isMuneL);
  18. }
  19. protected override void OnDoubleClick()
  20. {
  21. if (CurrentDragType != DragType.None) meido.SetMune(true, isMuneL);
  22. }
  23. protected override void UpdateDragType()
  24. {
  25. if (Input.Control && Input.Alt) CurrentDragType = DragType.RotLocalXZ;
  26. else CurrentDragType = DragType.None;
  27. }
  28. protected override void Drag()
  29. {
  30. if (isPlaying) meido.Stop = true;
  31. if (CurrentDragType == DragType.RotLocalXZ)
  32. {
  33. Porc(IK, ikCtrlData, ikChain[jointUpper], ikChain[jointMiddle], ikChain[jointLower]);
  34. InitializeRotation();
  35. }
  36. }
  37. }
  38. }