1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using UnityEngine;
- namespace COM3D2.MeidoPhotoStudio.Plugin
- {
- using Input = InputManager;
- public class DragPointMune : DragPointChain
- {
- private bool isMuneL;
- public override void Set(Transform myObject)
- {
- base.Set(myObject);
- isMuneL = myObject.name[5] == 'L'; // Mune_L_Sub
- }
- protected override void ApplyDragType() => ApplyProperties(CurrentDragType != DragType.None, false, false);
- protected override void OnMouseDown()
- {
- base.OnMouseDown();
- meido.SetMune(false, isMuneL);
- }
- protected override void OnDoubleClick()
- {
- if (CurrentDragType != DragType.None) meido.SetMune(true, isMuneL);
- }
- protected override void UpdateDragType()
- {
- if (Input.Control && Input.Alt) CurrentDragType = DragType.RotLocalXZ;
- else CurrentDragType = DragType.None;
- }
- protected override void Drag()
- {
- if (isPlaying) meido.Stop = true;
- if (CurrentDragType == DragType.RotLocalXZ)
- {
- Porc(IK, ikCtrlData, ikChain[jointUpper], ikChain[jointMiddle], ikChain[jointLower]);
- InitializeRotation();
- }
- }
- }
- }
|