diff --git a/src/000-SCRIPT_OBJ/Helpers.js b/src/000-SCRIPT_OBJ/Helpers.js index 4db7b09..1d7cd53 100644 --- a/src/000-SCRIPT_OBJ/Helpers.js +++ b/src/000-SCRIPT_OBJ/Helpers.js @@ -1600,3 +1600,9 @@ var handleMetersNumberValueSettingChanged = function() { App.PR.RefreshTwineScore(); }; + +var handleDisplayBodyScoreChanged = function () { + if (!SugarCube.settings.displayBodyScore) { + $('#bodyScoreContainer').empty(); + } +}; diff --git a/src/200-WIDGETS/Player Score.twee b/src/200-WIDGETS/Player Score.twee index 56ee7a0..05985a2 100644 --- a/src/200-WIDGETS/Player Score.twee +++ b/src/200-WIDGETS/Player Score.twee @@ -55,3 +55,43 @@ Tokens: <>\ <> + +<> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Hair:<>
Face:<>
Lips:<>
Bust:<>
Lactation:<>
Height:<>
Waist:<>
Hips:<>
Ass:<>
Penis:<>
Balls:<>
+<
> diff --git a/src/200-WIDGETS/printJobResult.twee b/src/200-WIDGETS/printJobResult.twee index b1d3d7e..912114e 100644 --- a/src/200-WIDGETS/printJobResult.twee +++ b/src/200-WIDGETS/printJobResult.twee @@ -17,7 +17,11 @@ <><> <> -<> +<> <> <> <><> diff --git a/src/201-UI/Story Caption.twee b/src/201-UI/Story Caption.twee index f94d35b..9c06d5e 100644 --- a/src/201-UI/Story Caption.twee +++ b/src/201-UI/Story Caption.twee @@ -2,5 +2,6 @@ \ <>\ <>\ +<><><><><>\ <>\ -\ \ No newline at end of file +\ diff --git a/src/main.twee b/src/main.twee index 751a046..c925d54 100644 --- a/src/main.twee +++ b/src/main.twee @@ -85,6 +85,12 @@ Setting.addToggle("displayNPC", { onChange: App.Avatar.NPCSettingHandler }); +Setting.addToggle("displayBodyScore", { + label: "Display numerical body parameters", + default: false, + onChange: handleDisplayBodyScoreChanged +}); + Setting.addToggle("fastAnimations", { label: "Fast Animations", default: false @@ -146,6 +152,9 @@ Config.saves.isAllowed = function() { var container = $("
").appendTo($("#ui-bar")); var portrait = $("
").appendTo($("#ui-bar")); +} :: Start <>