From a87d7e404fb2d70f6617483ffd2dbfd8341f843b Mon Sep 17 00:00:00 2001 From: prndev <prndev@users.noreply.github.com> Date: Tue, 31 Jul 2018 22:27:30 +0200 Subject: [PATCH] Vector Art (deepmurk variant): Move butt plugs and their attachments into the background. Fixes #219. --- src/art/artWidgets.tw | 1 + src/art/vector/Anal_Accessories.tw | 16 ++++++++++++++++ src/art/vector/Chastity_Belt.tw | 16 ---------------- 3 files changed, 17 insertions(+), 16 deletions(-) create mode 100644 src/art/vector/Anal_Accessories.tw diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw index 529ab0b0b66..db4ddb052ca 100644 --- a/src/art/artWidgets.tw +++ b/src/art/artWidgets.tw @@ -52,6 +52,7 @@ vector art added later is drawn over previously added art */ <<include Art_Vector_Hair_Back_>> <<include Art_Vector_Arm_>> +<<include Art_Vector_Anal_Accessories_>> <<include Art_Vector_Butt_>> <<include Art_Vector_Leg_>> <<include Art_Vector_Feet_>> /* includes shoes and leg outfits*/ diff --git a/src/art/vector/Anal_Accessories.tw b/src/art/vector/Anal_Accessories.tw new file mode 100644 index 00000000000..5c377217ef8 --- /dev/null +++ b/src/art/vector/Anal_Accessories.tw @@ -0,0 +1,16 @@ +:: Art_Vector_Anal_Accessories_ [nobr] + +<<if _artSlave.buttplug == "long plug">> + <<include Art_Vector_Plug_Long>> +<<elseif _artSlave.buttplug == "large plug">> + <<include Art_Vector_Plug_Large>> +<<elseif _artSlave.buttplug == "long, large plug">> + <<include Art_Vector_Plug_Large_Long>> +<<elseif _artSlave.buttplug == "huge plug">> + <<include Art_Vector_Plug_Huge>> +<<elseif _artSlave.buttplug == "long, huge plug">> + <<include Art_Vector_Plug_Huge_Long>> +<</if>> +<<if _artSlave.buttplugAttachment == "tail">> + <<include Art_Vector_Plug_Tail>> +<</if>> diff --git a/src/art/vector/Chastity_Belt.tw b/src/art/vector/Chastity_Belt.tw index a77a6b182fb..60bbe16d62d 100644 --- a/src/art/vector/Chastity_Belt.tw +++ b/src/art/vector/Chastity_Belt.tw @@ -44,19 +44,3 @@ <</if>> <</if>> - -/* Anal Accessories */ -<<if _artSlave.buttplug == "long plug">> - <<include Art_Vector_Plug_Long>> -<<elseif _artSlave.buttplug == "large plug">> - <<include Art_Vector_Plug_Large>> -<<elseif _artSlave.buttplug == "long, large plug">> - <<include Art_Vector_Plug_Large_Long>> -<<elseif _artSlave.buttplug == "huge plug">> - <<include Art_Vector_Plug_Huge>> -<<elseif _artSlave.buttplug == "long, huge plug">> - <<include Art_Vector_Plug_Huge_Long>> -<</if>> -<<if _artSlave.buttplugAttachment == "tail">> - <<include Art_Vector_Plug_Tail>> -<</if>> \ No newline at end of file -- GitLab