|
@@ -59,7 +59,7 @@ if $ARGS[0] = 'UpdateBodyMeasurement':
|
|
|
pcs_waist = (pcs_hips * bodyVars['wratio']) / 100 + bodyVars['vofat']
|
|
|
pcs_band = (pcs_waist * bodyVars['bratio']) / 100 + bodyVars['vofat']
|
|
|
pcs_bust = (pcs_waist * bodyVars['bratio']) / 100 + pcs_mass['bust'] + bodyVars['bust_magic'] + bodyVars['bust_silicone'] + max(-10, min(bodyVars['bust_other'], 10))
|
|
|
- pcs_butt = (pcs_hips * 10 ) / 100 + bodyVars['butt_bonus'] + bodyVars['butt_silicone'] + bodyVars['butt_cheat'] + pcs_butt_tr + bodyVarsmax(-5, min(bodyVars['butt_other'], 5))
|
|
|
+ pcs_butt = (pcs_hips * 10 ) / 100 + bodyVars['butt_bonus'] + bodyVars['butt_silicone'] + bodyVars['butt_cheat'] + pcs_butt_tr + max(-5, min(bodyVars['butt_other'], 5))
|
|
|
|
|
|
!! pcs_cupsize = pcs_mass['bust'] + bodyVars['bust_magic'] + bodyVars['bust_silicone'] - bodyVars['vofat']
|
|
|
pcs_cupsize = pcs_bust - pcs_band
|
|
@@ -708,7 +708,7 @@ if $ARGS[0] = 'Redistribute_Mass':
|
|
|
end
|
|
|
|
|
|
|
|
|
-if $ARGS[0] = 'Reset_Mass_distribution':
|
|
|
+if $ARGS[0] = 'Reset_mass_distribution':
|
|
|
total_mass = pcs_mass['body'] + pcs_mass['bust'] + pcs_mass['butt']
|
|
|
total_gen_mass = 60 + pcs_mass['bust_gen'] + pcs_mass['butt_gen']
|
|
|
|
|
@@ -727,6 +727,15 @@ if $ARGS[0] = 'Reset_Mass_distribution':
|
|
|
end
|
|
|
|
|
|
|
|
|
+if $ARGS[0] = 'Set_mass_distribution_using_body':
|
|
|
+ pcs_mass['body'] = ARGS[1]
|
|
|
+ pcs_mass['bust'] = (pcs_mass['bust_gen'] * ARGS[1]) / 60
|
|
|
+ pcs_mass['butt'] = (pcs_mass['butt_gen'] * ARGS[1]) / 60
|
|
|
+
|
|
|
+ gs 'body', 'Reset_mass_distribution'
|
|
|
+end
|
|
|
+
|
|
|
+
|
|
|
!!------------------------- UPDATE vhips -------------------------!!
|
|
|
|
|
|
|