소스 검색

Reduce drag point size for fingers/toes

habeebweeb 3 년 전
부모
커밋
461969a195
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Meido/MeidoDragPointManager.cs

+ 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)
             {