瀏覽代碼

Add default SoftG to MMConstants

Used to determine if hair gravity was active in MM.
habeebweeb 3 年之前
父節點
當前提交
bed7f9ee15
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/MeidoPhotoStudio.Converter/MultipleMaids/MMConstants.cs

+ 2 - 0
src/MeidoPhotoStudio.Converter/MultipleMaids/MMConstants.cs

@@ -2,6 +2,7 @@
 using System.Collections.Generic;
 using System.Linq;
 using MyRoomCustom;
+using UnityEngine;
 
 namespace MeidoPhotoStudio.Converter.MultipleMaids
 {
@@ -33,5 +34,6 @@ namespace MeidoPhotoStudio.Converter.MultipleMaids
                     data => data,
                     StringComparer.InvariantCultureIgnoreCase
                 );
+        public static readonly Vector3 DefaultSoftG = new(0f, -3f / 1000f, 0f);
     }
 }