Browse Source

Reduce drag point size for fingers/toes

habeebweeb 3 years ago
parent
commit
461969a195

+ 1 - 1
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Meido/MeidoDragPointManager.cs

@@ -509,7 +509,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
 
         private void InitializeFingerDragPoint(Bone start, Bone end)
         {
-            Vector3 fingerDragPointSize = Vector3.one * 0.015f;
+            Vector3 fingerDragPointSize = Vector3.one * 0.01f;
             int joints = BoneTransform[start].name.Split(' ')[2].StartsWith("Finger") ? 4 : 3;
             for (Bone bone = start; bone <= end; bone += joints)
             {