12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using UnityEngine;
- namespace COM3D2.MeidoPhotoStudio.Plugin
- {
- internal class DragPointPelvis : DragPointMeido
- {
- private Quaternion pelvisRotation;
- protected override void ApplyDragType()
- {
- if (CurrentDragType == DragType.Ignore) ApplyProperties();
- else if (IsBone) ApplyProperties(false, false, false);
- else ApplyProperties(CurrentDragType != DragType.None, false, false);
- }
- protected override void UpdateDragType()
- {
- if (Input.GetKey(KeyCode.Space) || OtherDragType())
- {
- CurrentDragType = DragType.Ignore;
- }
- else if (Utility.GetModKey(Utility.ModKey.Alt) && !Utility.GetModKey(Utility.ModKey.Control))
- {
- bool shift = Utility.GetModKey(Utility.ModKey.Shift);
- CurrentDragType = shift ? DragType.RotLocalY : DragType.RotLocalXZ;
- }
- else
- {
- CurrentDragType = DragType.None;
- }
- }
- protected override void OnMouseDown()
- {
- base.OnMouseDown();
- pelvisRotation = MyObject.rotation;
- }
- protected override void Drag()
- {
- if (CurrentDragType == DragType.None) return;
- if (isPlaying) meido.Stop = true;
- Vector3 mouseDelta = MouseDelta();
- if (CurrentDragType == DragType.RotLocalXZ)
- {
- MyObject.rotation = pelvisRotation;
- MyObject.Rotate(camera.transform.forward, mouseDelta.x / 6f, Space.World);
- MyObject.Rotate(camera.transform.right, mouseDelta.y / 4f, Space.World);
- }
- if (CurrentDragType == DragType.RotLocalY)
- {
- MyObject.rotation = pelvisRotation;
- MyObject.Rotate(Vector3.right * (mouseDelta.x / 2.2f));
- }
- }
- }
- }
|