h4lfheart / FortnitePorting

Automation of the Fortnite Porting Process
GNU General Public License v3.0
250 stars 45 forks source link

Fixing shapekey issue and Tasty Rig deform bone scaling when scaleDown=false #48

Closed Bmarquez1997 closed 5 months ago

Bmarquez1997 commented 6 months ago

When exporting a skin with the Tasty (IK) rig and Scale Down set to false, the plugin would fail in the middle of setting up the Tasty Rig (on line 1912), causing the IK components to not get set up. The issue was that in python, (x, y, z) * 100 is (x, y, z, x, y, z,, ... ) instead of (100x, 100y, 100z). It looks like other places above used Vector(x, y, z) when multiplying with scale, so I changed the line that was throwing the error to the same format

Bmarquez1997 commented 6 months ago

Also added the changes I made to make the version of 2.1.5 that I uploaded in case it was easier to use them from a PR

h4lfheart commented 5 months ago

merging other pr https://github.com/halfuwu/FortnitePorting/pull/50