yuukino9 Posted January 2 Posted January 2 (edited) On 12/31/2025 at 9:04 PM, sshazoxt said: Okay, I found the problem with the 1-second delay in texture loading. I'm not a modder, but I am a programmer, and using VS Code's compiler, I was able to analyze the mod.ini file. I used a Danjin mod as a reference, which loads perfectly (link for reference: https://gamebanana.com/mods/563390). By using other mods that only partially load, I was able to infer the technique and replicate it in another mod (encore mod), and it loaded correctly. Since modding isn't my area of expertise, I'll leave exactly what the compiler told me (Cloud Sonnet 4). I hope it helps with future mod versions. ------------------------ Summary of the implemented technique: Dynamic Texture Remapping Problem identified: After the game patch, mods that use the standard texture system experience loading delays (~1 second), where the textures initially appear incorrect before loading correctly. Applied technique (based on Danjin): 1. Custom texture resources: ; Instead of just ResourceTexture0, ResourceTexture1, etc. [ResourceBodyMain] filename = Textures/Components-1 t=5395f197.dds [ResourceBodySecondary] filename = Textures/Components-1 t=c26d7da2.dds [ResourceClothing] filename = Textures/Components-1 t=d1df2ed7.dds 2. Dynamic remapping during rendering: ; Store backup of original texture slot ResourceTextureBackup = ref ps-t0 ; Set optimized body textures ps-t0 = ResourceBodyMain ps-t1 = ResourceBodySecondary ps-t2 = ResourceSharedNormals ; Draw component with correct textures drawindexed = 7134, 3, 0 ; Restore original texture ps-t0 = ref ResourceTextureBackup Key differences vs. standard system: Standard System (problematic) ----- Optimized System (Danjin) Textures automatically assigned by hash ---- Manual pre-assignment of specific textures One texture per slot throughout rendering ---- Dynamic texture switching per body part Dependent on game load timing ---- Full control over which texture is used when Why it works: Timing control: By pre-assigning specific textures before each drawindexed, we eliminate dependence on the game's automatic load system. Specificity: Each body part uses the exact texture it needs at the exact moment it needs it. Backup and restore: We avoid interfering with other components by maintaining the original texture state. Application in Encore: ✅ Component1 (main body): Dynamic reassignment implemented → Instant loading ✅ Component3 (legs/accessories): Left unmodified → Works flawlessly ⚠️ Other components: Not yet optimized, but not problematic To apply in other mods: Identify which textures each main component uses Create custom resources with descriptive names Implement dynamic reassignment only on components that handle large body parts Leave components that work well untouched Always use backup/restore to avoid conflicts This technique transforms an automatic loading system (prone to post-patch delays) into a controlled and deterministic loading system. hi bro can u make vid pls how to for stupid ppl i read it many times still no idea how nvm this completely fixed textures deley during switching chars on 9800x3d-5070ti [ConsoleVariables] r.Kuro.SkeletalMesh.LODDistanceScale=20 r.Streaming.PoolSize=16384 r.Streaming.LimitPoolSizeToVRAM=1 r.Streaming.MinBoost=15.0 r.Kuro.SkeletalMesh.LODDistanceScaleDeviceOffset=-50 r.Streaming.UseAllMips=0 r.Streaming.UseFixedPoolSize=1 Edited January 2 by yuukino9
muqiuxingyu Posted January 2 Posted January 2 (edited) 16 hours ago, muqiuxingyu said: now I'm sure that the question is come from NVDIA DLSS,but i don't know how to solve it. i dont know why this question disappeared suddenly.....maybe my computer is unhappy that i alway use loli mods.....i decide to download some big boobs mod Edited January 2 by muqiuxingyu
Saltimeer Posted January 2 Posted January 2 Sorry , Anyone has a Mornye NPC mod from Monsoon? Many thanks. Mornye NPC Mod 1 & 2|monsoon|pixivFANBOX 5
IncogACC Posted January 2 Posted January 2 7 hours ago, captoppai said: Hi Bro, any update on the fixes for your potrait mod? Asking that as a reply to me actively crashing out is crazy. And I've already answered that before, no, I can't fix them because the way they work fundamentally has changed to spine textures instead of flat textures so it's not possible to replace them with a flat texture. If I learnt how to write a custom HLSL and wrote some code to handle coordinate designation based on hashes then I could potentially write a custom shader that draws over the top of the portrait boxes, but that is outside of what I can do right now and I don't even know if I want to put that kind of effort into this. I'm just waiting to see if Kuro adds the option to turn off the animation portraits in the future. 3
yuukino9 Posted January 2 Posted January 2 (edited) 38 minutes ago, IncogACC said: Asking that as a reply to me actively crashing out is crazy. And I've already answered that before, no, I can't fix them because the way they work fundamentally has changed to spine textures instead of flat textures so it's not possible to replace them with a flat texture. If I learnt how to write a custom HLSL and wrote some code to handle coordinate designation based on hashes then I could potentially write a custom shader that draws over the top of the portrait boxes, but that is outside of what I can do right now and I don't even know if I want to put that kind of effort into this. I'm just waiting to see if Kuro adds the option to turn off the animation portraits in the future. same pc i feel u seeing fps dropping to 52 from 120 is crazy i also noticed 3.0 map dont seem to save cache every launch using anything drop to 40 with cpu jumping to 60-80-% Edited January 2 by yuukino9
AtomicGrievous Posted January 2 Posted January 2 New Fixer Moonholder/Wuwa_Mod_Fixer 3.0 with Wuwa_Mod_Fixer.StableTextures https://github.com/Moonholder/Wuwa_Mod_Fixer/releases/tag/v3.0.0 4
OJBK6655 Posted January 2 Posted January 2 (edited) 琳奈-休闲-高马尾(4567;?切换).rarIs there any expert who can make the hair from this mod into a separate mod? Edited January 2 by OJBK6655 1
yuukino9 Posted January 2 Posted January 2 3 hours ago, IncogACC said: Asking that as a reply to me actively crashing out is crazy. And I've already answered that before, no, I can't fix them because the way they work fundamentally has changed to spine textures instead of flat textures so it's not possible to replace them with a flat texture. If I learnt how to write a custom HLSL and wrote some code to handle coordinate designation based on hashes then I could potentially write a custom shader that draws over the top of the portrait boxes, but that is outside of what I can do right now and I don't even know if I want to put that kind of effort into this. I'm just waiting to see if Kuro adds the option to turn off the animation portraits in the future. after testing i found the problem is WWMI itself not RabbitFX that tank fps dx11 vanilla only drop to 105 with WWMI drop to 60 even without any mod adding can help with stuttering r.MeshDrawCommands.DynamicInstancing=1 fx.FixNiagaraDDCNotChange=1 r.ShaderCompiler.EnableLatestDXC=0 r.AsyncComputePSO=1 FX.AllowGPUParticles=1
IncogACC Posted January 2 Posted January 2 1 draw call split into 62 draw calls. 1 FUCKING DRAW CALL, INTO 62 INDIVIDUAL DRAW CALLS. I'm so sick of working on this guy's mods... My schedule for today is completely fucked. It fitting the new years theme is the only reason I even bothered. Toggles: Up - Front ribbon* Down - Sleeves Left - Top* Right - Bottom* Alt Up - Back ribbon* Alt Down - Shoes Alt Left - Sash Alt Right - Panties * Parts are connected to the sash, if you remove the sash, then these will come off as well. ChangliShortKimono.rar 15
Bikeshotrs Senpai Posted January 2 Posted January 2 hey guys, is there anyone willing to make a thicker version of this mod? https://gamebanana.com/mods/638840
IncogACC Posted January 2 Posted January 2 I'm not even gonna use this mod but for some dumb reason I separated it anyway. Toggles: Only 4 this time, there wasn't much separation possible. Up - Hair ties Down - Panties Left - Shirt Right - Skirt CartethyiaOL.rar 16
JohnRise Posted January 2 Posted January 2 7 hours ago, Saltimeer said: Sorry , Anyone has a Mornye NPC mod from Monsoon? Many thanks. Mornye NPC Mod 1 & 2|monsoon|pixivFANBOX monsoon-MornyeNPCMod2.zip monsoon-MornyeNPCMod1.zip 10
nonamewind Posted January 2 Posted January 2 Does anyone have this mod? It’s a version of the original mod with extra colors added 1
崩壊的大猫 Posted January 2 Posted January 2 抱歉,请问有人有slap_的琳奈完整版吗?最后非常感谢! https://gamebanana.com/mods/642130 1
Constantine1416 Posted January 2 Posted January 2 6 hours ago, IncogACC said: I'm not even gonna use this mod but for some dumb reason I separated it anyway. Toggles: Only 4 this time, there wasn't much separation possible. Up - Hair ties Down - Panties Left - Shirt Right - Skirt CartethyiaOL.rar 28.8 MB · 1 download is the portrait mod updated?
awezo Posted January 2 Posted January 2 17 hours ago, yuukino9 said: hi bro can u make vid pls how to for stupid ppl i read it many times still no idea how nvm this completely fixed textures deley during switching chars on 9800x3d-5070ti [ConsoleVariables] r.Kuro.SkeletalMesh.LODDistanceScale=20 r.Streaming.PoolSize=16384 r.Streaming.LimitPoolSizeToVRAM=1 r.Streaming.MinBoost=15.0 r.Kuro.SkeletalMesh.LODDistanceScaleDeviceOffset=-50 r.Streaming.UseAllMips=0 r.Streaming.UseFixedPoolSize=1 hi where i need to paste that lines to stop mod deley ?
Ashewz Posted January 2 Posted January 2 (edited) On 12/29/2025 at 6:51 AM, AtomicGrievous said: Hello. I recently got hold of a different version of this mod with oily skin, but it has some problems. The first one is quite obvious: the breasts. The second one is with the toggles: Skin(oily/normal,) hair color, and stockings share the same toggle key (=). On top of that—this is not a problem per se, just me nitpicking—some things are missing, like the purple hair, the patterned stockings, and other weapon skins(the one in the mod I got here is not bad actually.) I know this is too much to ask, but any help would be very appreciated. Augusta Formal Dress v1.02.7z Edited January 2 by Ashewz 1
Ashewz Posted January 2 Posted January 2 Is there a guide on how to use RabbitFX. The ones around are old and use rabbitfxfixer.exe. I don't know how to make use of the updated ones (eg: the contents of the v616_fed2f.zip file.)
blueLinear Posted January 2 Posted January 2 On 12/29/2025 at 2:02 PM, godnidhogg said: I've reworked the textures I previously modified and applied them to this mod. Hope you all like it. 坎特雷拉-莫加多尔贴图自改.rar 42.25 MB · 7 downloads Where does this mod come from? Are there any other mods like this?
-Clockwork- Posted January 3 Posted January 3 OldDragon-DeathDragon-Ver010.zip can someone fix this dragon of dirge mod
Alavant Posted January 3 Posted January 3 On 12/31/2025 at 12:04 PM, sshazoxt said: Okay, I found the problem with the 1-second delay in texture loading. I'm not a modder, but I am a programmer, and using VS Code's compiler, I was able to analyze the mod.ini file. I used a Danjin mod as a reference, which loads perfectly (link for reference: https://gamebanana.com/mods/563390). By using other mods that only partially load, I was able to infer the technique and replicate it in another mod (encore mod), and it loaded correctly. Since modding isn't my area of expertise, I'll leave exactly what the compiler told me (Cloud Sonnet 4). I hope it helps with future mod versions. ------------------------ Summary of the implemented technique: Dynamic Texture Remapping Problem identified: After the game patch, mods that use the standard texture system experience loading delays (~1 second), where the textures initially appear incorrect before loading correctly. Applied technique (based on Danjin): 1. Custom texture resources: ; Instead of just ResourceTexture0, ResourceTexture1, etc. [ResourceBodyMain] filename = Textures/Components-1 t=5395f197.dds [ResourceBodySecondary] filename = Textures/Components-1 t=c26d7da2.dds [ResourceClothing] filename = Textures/Components-1 t=d1df2ed7.dds 2. Dynamic remapping during rendering: ; Store backup of original texture slot ResourceTextureBackup = ref ps-t0 ; Set optimized body textures ps-t0 = ResourceBodyMain ps-t1 = ResourceBodySecondary ps-t2 = ResourceSharedNormals ; Draw component with correct textures drawindexed = 7134, 3, 0 ; Restore original texture ps-t0 = ref ResourceTextureBackup Key differences vs. standard system: Standard System (problematic) ----- Optimized System (Danjin) Textures automatically assigned by hash ---- Manual pre-assignment of specific textures One texture per slot throughout rendering ---- Dynamic texture switching per body part Dependent on game load timing ---- Full control over which texture is used when Why it works: Timing control: By pre-assigning specific textures before each drawindexed, we eliminate dependence on the game's automatic load system. Specificity: Each body part uses the exact texture it needs at the exact moment it needs it. Backup and restore: We avoid interfering with other components by maintaining the original texture state. Application in Encore: ✅ Component1 (main body): Dynamic reassignment implemented → Instant loading ✅ Component3 (legs/accessories): Left unmodified → Works flawlessly ⚠️ Other components: Not yet optimized, but not problematic To apply in other mods: Identify which textures each main component uses Create custom resources with descriptive names Implement dynamic reassignment only on components that handle large body parts Leave components that work well untouched Always use backup/restore to avoid conflicts This technique transforms an automatic loading system (prone to post-patch delays) into a controlled and deterministic loading system. I do apologize but I am a bit of a goof when it comes to this, for this I would replace the: [ResourceBodyMain] filename = Textures/Components-1 t=5395f197.dds [ResourceBodySecondary] filename = Textures/Components-1 t=c26d7da2.dds [ResourceClothing] filename = Textures/Components-1 t=d1df2ed7.dds with: ResourceTextureBackup = ref ps-t0 ; Set optimized body textures ps-t0 = ResourceBodyMain ps-t1 = ResourceBodySecondary ps-t2 = ResourceSharedNormals ; Draw component with correct textures drawindexed = 7134, 3, 0 ; Restore original texture ps-t0 = ref ResourceTextureBackup In the Mod Ini correct? Would I need to change any of this for day other character mods? If so what? I know this seems like a dumb question but I want to know before I start doing edits and mess something up.
Imintoasses Posted January 3 Posted January 3 Does anyone have an updated version of Skin select impact? The latest version doesnt have Lynae and Buling https://gamebanana.com/tools/12839
AtomicGrievous Posted January 3 Posted January 3 4 hours ago, Ashewz said: Hello. I recently got hold of a different version of this mod with oily skin, but it has some problems. The first one is quite obvious: the breasts. The second one is with the toggles: Skin(oily/normal,) hair color, and stockings share the same toggle key (=). On top of that—this is not a problem per se, just me nitpicking—some things are missing, like the purple hair, the patterned stockings, and other weapon skins(the one in the mod I got here is not bad actually.) I know this is too much to ask, but any help would be very appreciated. Augusta Formal Dress v1.02.7z I didn't quite understand what you meant, but the breasts are like that even in the original mod. Blender is beyond my capabilities at the moment; I'm studying and practicing, so for now any kind of structural "adjustment" is off the table. But adding that "oily skin" is quite easy; you can do it just through the .INI file.
MANBO520 Posted January 3 Posted January 3 On 1/1/2026 at 1:15 PM, 讚嘆歡愉 said: 給你 但別說是我給的 monsoon-LynaeModToggle.zip 41.29 MB · 2次下载 I love you
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