Jump to content

[mod] Sized Apparel Retexture


Recommended Posts

19 hours ago, shitork said:

hello, your retexture is very wellmade, you're a very talented person. I hope you continue to make more in the future ?


I haven't played rimworld for six months now, so the pace has slowed down a bit.
But I'm not going to throw, at least what is on the list - I will definitely finish it. If I catch inspiration, I also plan to do vanilla faction extensions (the Middle Ages, Vikings, etc.)

Link to comment
On 3/10/2022 at 2:22 PM, zero112 said:

Wow, I'm tired. Too many routine movements.

But, the first part of the plan is finished. Added a mod-retexture for the body to the downloads.

so that:


new mod "SAR-Bodies"
Added body parts for: Fat, Hulk, Male.  Updated textures for: Thin and Female

  Reveal hidden contents

25.PNG.21ea1efa62586b03e43656f70fb713db.PNG




Now I need to discolor all these textures for Humanlike. This will ensure normal color compatibility.
Can anyone help with this? And I'll finish the clothes in the meantime ?
In fact, all you need is to turn on the "black and white" filter and then tint the nipples and other red details into the actual red. And save. Lots of saves. A hell of a lot of saves!!!!
In general, if anyone has a couple of hours of extra time and mammoth patience, we will all be grateful
I give a Photoshop file
RW_body_main.psd

 

Maybe someone can set up a Fiverr and pay someone 5$ to do it? ?

Link to comment
10 hours ago, honeyhotdog11 said:

Hey Zero, love your mod. I'm currently fixing s16's apparels into rimnudeworld, but I'm not sure how to get the genitals to show. I noticed you patched it for your apparels. Would you be able to guide me on how to make such a patch, thanks.

Rimnude's genitals are set to hide if a pawn is wearing apparel that covers legs. Also good work.

Link to comment
13 minutes ago, honeyhotdog11 said:

Thanks! Hm, but the duster shows genitals?

@Banana Banana added a new feature called "revealing apparel" to rimnude awhile back. This lets you make patches for certain apparel to not hide rimnude parts when they normally would. It's similar to sized apparel but has no functionality of sized textures. Strictly for whitelisting certain clothes, duster is one of them. You can look at these patches in the \Extra Patches\Revealing Apparel\Patches folder in rimnude.

Link to comment
6 hours ago, Tory187 said:

@Banana Banana added a new feature called "revealing apparel" to rimnude awhile back. This lets you make patches for certain apparel to not hide rimnude parts when they normally would. It's similar to sized apparel but has no functionality of sized textures. Strictly for whitelisting certain clothes, duster is one of them. You can look at these patches in the \Extra Patches\Revealing Apparel\Patches folder in rimnude.

@honeyhotdog11

Sized Apparel has its own revealing clothing method, the tags are the following:

 

SizedApparel_ShowBelly
    -don't hide belly even the apparel covers torso

SizedApparel_ShowPrivateCrotch
    -don't hide crotch(genitals and anus) even the apparel covers genitals

SizedApparel_ShowUdder
    -don't hide udder even the apparel covers udder
    -wip (not work yet)

SizedApparel_IgnorBreastSize
    -sized apparel mod will just ignore the apparel during calculate breasts size of apparels
    -this tag is useful to skip. good example is ratkin shield

SizedApparel_IgnorePose
    -when the custom pose is checking posed apparel texture, skip current apparel

 

So, for a patch that shows the crotch when worn, such as the duster:

 

<?xml version="1.0" encoding="utf-8" ?>

<Patch>
	<Operation Class="PatchOperationFindMod">
		<mods>
			<li>Mod you want patched</li>
		</mods>
		<match Class="PatchOperationSequence">
			<success>Normal</success>
			<operations>
				<li Class="PatchOperationConditional">
					<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
					<nomatch Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel</xpath>
						<value>
							<tags>
								<li>SizedApparel_ShowPrivateCrotch</li>
							</tags>
						</value>
					</nomatch>
					<match Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
						<value>
							<li>SizedApparel_ShowPrivateCrotch</li>
						</value>
					</match>
				</li>
			</operations>
		</match>
	</Operation>
</Patch>

 

If you want a specific piece of clothing to ignore breast sizes and enable belly graphics as well, such as for a backpack because it doesn't really cover anything:

 

<?xml version="1.0" encoding="utf-8" ?>

<Patch>
	<Operation Class="PatchOperationFindMod">
		<mods>
			<li>Mod you want patched</li>
		</mods>
		<match Class="PatchOperationSequence">
			<success>Normal</success>
			<operations>
				<li Class="PatchOperationConditional">
					<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
					<nomatch Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel</xpath>
						<value>
							<tags>
								<li>SizedApparel_ShowBelly</li>
								<li>SizedApparel_ShowPrivateCrotch</li>
								<li>SizedApparel_IgnorBreastSize</li>
							</tags>
						</value>
					</nomatch>
					<match Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
						<value>
							<li>SizedApparel_ShowBelly</li>
							<li>SizedApparel_ShowPrivateCrotch</li>
							<li>SizedApparel_IgnorBreastSize</li>
						</value>
					</match>
				</li>
			</operations>
		</match>
	</Operation>
</Patch>

 

Edited by GrimReaper
Link to comment
18 hours ago, honeyhotdog11 said:

Hey Zero, love your mod. I'm currently fixing s16's apparels into rimnudeworld, but I'm not sure how to get the genitals to show. I noticed you patched it for your apparels. Would you be able to guide me on how to make such a patch, thanks.

 

Untitled2.png


look here, it seems he finally solved this problem.


Or will something from what the guys wrote above help ?

The textures look cool! ?

 

Link to comment

lol that guy noticed the slight texture differences of OTYNude and sized apparel. I was wondering when someone was going to comment about that. OTYOTY retextured/touched up stuff for sized apparel so there are some subtle differences between the two, like breast size and thats what he is seeing in that post.

Link to comment
6 hours ago, GrimReaper said:

@honeyhotdog11

Sized Apparel has its own revealing clothing method, the tags are the following:

 

SizedApparel_ShowBelly
    -don't hide belly even the apparel covers torso

SizedApparel_ShowPrivateCrotch
    -don't hide crotch(genitals and anus) even the apparel covers genitals

SizedApparel_ShowUdder
    -don't hide udder even the apparel covers udder
    -wip (not work yet)

SizedApparel_IgnorBreastSize
    -sized apparel mod will just ignore the apparel during calculate breasts size of apparels
    -this tag is useful to skip. good example is ratkin shield

SizedApparel_IgnorePose
    -when the custom pose is checking posed apparel texture, skip current apparel

 

So, for a patch that shows the crotch when worn, such as the duster:

 

<?xml version="1.0" encoding="utf-8" ?>

<Patch>
	<Operation Class="PatchOperationFindMod">
		<mods>
			<li>Mod you want patched</li>
		</mods>
		<match Class="PatchOperationSequence">
			<success>Normal</success>
			<operations>
				<li Class="PatchOperationConditional">
					<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
					<nomatch Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel</xpath>
						<value>
							<tags>
								<li>SizedApparel_ShowPrivateCrotch</li>
							</tags>
						</value>
					</nomatch>
					<match Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
						<value>
							<li>SizedApparel_ShowPrivateCrotch</li>
						</value>
					</match>
				</li>
			</operations>
		</match>
	</Operation>
</Patch>

 

If you want a specific piece of clothing to ignore breast sizes and enable belly graphics as well, such as for a backpack because it doesn't really cover anything:

 

<?xml version="1.0" encoding="utf-8" ?>

<Patch>
	<Operation Class="PatchOperationFindMod">
		<mods>
			<li>Mod you want patched</li>
		</mods>
		<match Class="PatchOperationSequence">
			<success>Normal</success>
			<operations>
				<li Class="PatchOperationConditional">
					<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
					<nomatch Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel</xpath>
						<value>
							<tags>
								<li>SizedApparel_ShowBelly</li>
								<li>SizedApparel_ShowPrivateCrotch</li>
								<li>SizedApparel_IgnorBreastSize</li>
							</tags>
						</value>
					</nomatch>
					<match Class="PatchOperationAdd">
						<xpath>Defs/ThingDef[defName = "Apparel_Name"]/apparel/tags</xpath>
						<value>
							<li>SizedApparel_ShowBelly</li>
							<li>SizedApparel_ShowPrivateCrotch</li>
							<li>SizedApparel_IgnorBreastSize</li>
						</value>
					</match>
				</li>
			</operations>
		</match>
	</Operation>
</Patch>

 

 

9 hours ago, Tory187 said:

@Banana Banana added a new feature called "revealing apparel" to rimnude awhile back. This lets you make patches for certain apparel to not hide rimnude parts when they normally would. It's similar to sized apparel but has no functionality of sized textures. Strictly for whitelisting certain clothes, duster is one of them. You can look at these patches in the \Extra Patches\Revealing Apparel\Patches folder in rimnude.

 

6 hours ago, zero112 said:


look here, it seems he finally solved this problem.


Or will something from what the guys wrote above help ?

The textures look cool! ?

 

 

So I needed to make a patch within the directory said by @Tory187 in rimnude to whitelist s16's apparels, followed by another patch in S16's apparel mod with the code @GrimReaper gave, in order for genitals to show. The thread helped, thanks @zero112

 

108514872_Screenshot(478).png.088a9536b3362677cb35b34de42185e3.png1681305118_Screenshot(479).png.2b766aff3d3dcd93d08f2056d27584fa.png

 

 

Link to comment
3 hours ago, honeyhotdog11 said:

 

 

 

So I needed to make a patch within the directory said by @Tory187 in rimnude to whitelist s16's apparels, followed by another patch in S16's apparel mod with the code @GrimReaper gave, in order for genitals to show. The thread helped, thanks @zero112

 

108514872_Screenshot(478).png.088a9536b3362677cb35b34de42185e3.png1681305118_Screenshot(479).png.2b766aff3d3dcd93d08f2056d27584fa.png

 

 

I'm not big into modding but I think the patch that I posted needs to be placed somewhere in OTY Sized Apparel. Sized Apparel is standalone and doesn't necessarily need Rimnude, I think.

Link to comment
31 minutes ago, GrimReaper said:

Here are some patches for Vanilla Expanded - Accessories. Extract to SizedApparelRetexture\Patches\ApparelPatches OR SizedApparel\Patches\ApparelPatches and the equipment won't cause your pawns to revert to the vanilla graphics anymore.

VanillaAccessories.7z 728 B · 2 downloads


Oh, is everything working well? Then I'll add these patches to the next update, do you mind? ?
to have everything in one pile

Link to comment
15 minutes ago, zero112 said:


Oh, is everything working well? Then I'll add these patches to the next update, do you mind? ?
to have everything in one pile

For some reason the backpack needs to have specific textures in SizedApparel while the battle banner and mini turret pack don't. I'll update the post with the attachments.

Link to comment
  • 2 weeks later...

I got distracted here again ?
I'm trying to make support for other races, I started with Beastmen. I finished with the bodies, the other day I will make clothes out of mods and release an update.

I hope at least someone besides me needs it ?
 

Spoiler

image.png.4a27231216b35ad2ba28505e4277776e.png
 


I just wanted to brag, I haven't released anything for a long time ?

Link to comment
15 hours ago, fuuuuuuuu said:

Which face mod are you using?

https://steamcommunity.com/sharedfiles/filedetails/?id=1635901197

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2581693737

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2661297719

 

I then copied the textures from Facial Animation - Experimentals over Wanted: A facial anim. Extension because I don't like that the latter overwrites the former. I like additional content, not replacing everything. I usually reserve the cutesy anime faces for pawns that have the beautiful or pretty traits.

 

_______________________

 

 

I spliced together the textures from @zero112 's jumpsuit and @AKawaiiTent's sling bikini. Looks quite nice in my opinion.

 

gadget.jpg

Link to comment
1 hour ago, GrimReaper said:

https://steamcommunity.com/sharedfiles/filedetails/?id=1635901197

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2581693737

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2661297719

 

Затем я скопировал текстуры из Facial Animation — Experimentals over Wanted: A лицевая анимация. Расширение, потому что мне не нравится, что последнее перезаписывает первое. Мне нравится дополнительный контент, а не замена всего. Я обычно приберегаю жеманные аниме-лица для пешек, у которых есть красивые или симпатичные черты.

 

_______________________

 

 

Я соединил текстуры из@zero112комбинезон и@AKawaiiTentслинг бикини. На мой взгляд выглядит довольно красиво.

 

гаджет.jpg

Really cool, only the helmet spoils a little

Link to comment

Sized Apparel Retexture
new version 0.17

Improved texture: Tribal Poncho
Added textures: BullgorPlate, Furmantle, Loincloth, ShamanRobe


SAR-Bodies
new version 1.1

Compressed textures (Less weight with a slight loss of quality. Not really noticeable at all).
Added bodies for mod
Warhammer: Gor

Spoiler


image.png.0330095c996430713f166c2494d5bd98.png




Well, something like that.

Edited by zero112
Link to comment
5 hours ago, GrimReaper said:

https://steamcommunity.com/sharedfiles/filedetails/?id=1635901197

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2581693737

+

https://steamcommunity.com/sharedfiles/filedetails/?id=2661297719

 

I then copied the textures from Facial Animation - Experimentals over Wanted: A facial anim. Extension because I don't like that the latter overwrites the former. I like additional content, not replacing everything. I usually reserve the cutesy anime faces for pawns that have the beautiful or pretty traits.

 

_______________________

 

 

I spliced together the textures from @zero112 's jumpsuit and @AKawaiiTent's sling bikini. Looks quite nice in my opinion.

 

gadget.jpg



Can I ask you for these overalls textures? They look cool, maybe someone wants to put them on (for example, I =))

Link to comment
5 minutes ago, zero112 said:



Can I ask you for these overalls textures? They look cool, maybe someone wants to put them on (for example, I =))

Sure thing but they're not really my textures, the jumpsuit is yours and the sling bikini is from @AKawaiiTent. If any of you don't want me to upload these textures, I'll take the link down asap.

 

https://www.mediafire.com/file/8n6tnfizqvtfrpf/Jumpsuit.7z/file

 

unzip (hehe) the content to RimWorld\Mods\SizedApparelRetexture\Textures\Things\Apparel\Jumpsuit

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use