miijs 1.6.9 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1184,7 +1184,7 @@ module.exports={
|
|
|
1184
1184
|
miiBin+="000000";
|
|
1185
1185
|
miiBin+=wiiHairCols.indexOf(mii.eyebrows.col).toString(2).padStart(3,"0");
|
|
1186
1186
|
miiBin+=mii.eyebrows.size.toString(2).padStart(4,"0");
|
|
1187
|
-
miiBin+=mii.eyebrows.yPos.toString(2).padStart(5,"0");
|
|
1187
|
+
miiBin+=(mii.eyebrows.yPos+3).toString(2).padStart(5,"0");
|
|
1188
1188
|
miiBin+=mii.eyebrows.distApart.toString(2).padStart(4,"0");
|
|
1189
1189
|
miiBin+=(+getKeyByValue(eyeTable,mii.eyes.type)).toString(2).padStart(6,"0");
|
|
1190
1190
|
miiBin+="00";
|
|
@@ -1401,7 +1401,7 @@ module.exports={
|
|
|
1401
1401
|
studioMii[0xA] = mii.eyebrows.squash;
|
|
1402
1402
|
studioMii[0xC] = mii.eyebrows.rot;
|
|
1403
1403
|
studioMii[0xF] = mii.eyebrows.distApart;
|
|
1404
|
-
studioMii[0x10] = mii.eyebrows.yPos
|
|
1404
|
+
studioMii[0x10] = mii.eyebrows.yPos;
|
|
1405
1405
|
studioMii[0x2C] = tables.noses[mii.nose.type[0]][mii.nose.type[1]];
|
|
1406
1406
|
studioMii[0x2B] = mii.nose.size;
|
|
1407
1407
|
studioMii[0x2D] = mii.nose.yPos;
|