Explorar el Código

Add default SoftG to MMConstants

Used to determine if hair gravity was active in MM.
habeebweeb hace 3 años
padre
commit
bed7f9ee15
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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);
     }
 }