zero112 Posted April 18, 2022 Author Posted April 18, 2022 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.) 1
nun56unn5ufg Posted April 21, 2022 Posted April 21, 2022 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 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? ?
zero112 Posted April 21, 2022 Author Posted April 21, 2022 1 hour ago, nun56unn5ufg said: Maybe someone can set up a Fiverr and pay someone 5$ to do it? ? I doubt it will work ?
zero112 Posted April 25, 2022 Author Posted April 25, 2022 new version 0.16 Added textures: Blouse Spoiler A small update, added a blouse. 3
honeyhotdog11 Posted May 4, 2022 Posted May 4, 2022 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. 2
Tory187 Posted May 5, 2022 Posted May 5, 2022 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.
honeyhotdog11 Posted May 5, 2022 Posted May 5, 2022 2 hours ago, Tory187 said: Rimnude's genitals are set to hide if a pawn is wearing apparel that covers legs. Also good work. Thanks! Hm, but the duster shows genitals?
Tory187 Posted May 5, 2022 Posted May 5, 2022 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.
GrimReaper Posted May 5, 2022 Posted May 5, 2022 (edited) 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 May 5, 2022 by GrimReaper 1
zero112 Posted May 5, 2022 Author Posted May 5, 2022 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. look here, it seems he finally solved this problem. Or will something from what the guys wrote above help ? The textures look cool! ?
Tory187 Posted May 5, 2022 Posted May 5, 2022 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.
honeyhotdog11 Posted May 5, 2022 Posted May 5, 2022 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 1
GrimReaper Posted May 5, 2022 Posted May 5, 2022 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 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.
zero112 Posted May 6, 2022 Author Posted May 6, 2022 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 2
GrimReaper Posted May 6, 2022 Posted May 6, 2022 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.
GrimReaper Posted May 6, 2022 Posted May 6, 2022 Okay, this should be a working version without the workaround of adding textures and without errors, it's a proper patch now. As previously, extract to SizedApparelRetexture\Patches\ApparelPatches OR SizedApparel\Patches\ApparelPatches. VanillaAccessories.7z 3
zero112 Posted May 15, 2022 Author Posted May 15, 2022 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 I just wanted to brag, I haven't released anything for a long time ? 3
fuuuuuuuu Posted May 21, 2022 Posted May 21, 2022 On 4/28/2022 at 2:20 PM, GrimReaper said: Best mod Which face mod are you using?
GrimReaper Posted May 22, 2022 Posted May 22, 2022 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. 1
Akaluto Posted May 22, 2022 Posted May 22, 2022 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слинг бикини. На мой взгляд выглядит довольно красиво. Really cool, only the helmet spoils a little
zero112 Posted May 22, 2022 Author Posted May 22, 2022 (edited) 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 Well, something like that. Edited May 22, 2022 by zero112 1
zero112 Posted May 22, 2022 Author Posted May 22, 2022 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. Can I ask you for these overalls textures? They look cool, maybe someone wants to put them on (for example, I =))
GrimReaper Posted May 22, 2022 Posted May 22, 2022 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 2
ilgrandematteo Posted May 26, 2022 Posted May 26, 2022 Hi, just wondering if I'm missing something - as my pawns don't look like this in game. Do you have an additional mod to get those faces and bodies? If so, please could you provide me links?
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now