Create and Fuck your AI Slut -70% OFF
x

Tutorial Unity How To Uncensor (Almost) Any Unity Game

Vacillator

Newbie
Mar 25, 2018
77
305
129
i try to import dump after changing the resource but it wont let me import? doesnt show the star or anything after i import basically nothing happens, y it do that?

also tried the method with hex editor same result once i import raw nothing happens no star no changes basically wont import
 
Last edited:

funog1

Member
Modder
Mar 2, 2017
497
2,846
508
I'm having trouble with this game:

Can't find the mosaic and using auto demosaic kinda works but removes all textures from affected areas. This developer made another game before and it had the same problem but some guy fixed it: https://f95zone.to/threads/strike-final-visionary.100740/post-7016733
(yes i tried applying the fix to the newer game).

Help?
It seems "some guy" managed to get this one done as well. Still just using BepInEx(need to get BepInEx yourself though), no need for other stuff.
 

TKNash

New Member
Sep 6, 2021
8
8
89
Got it thanks, had to use AssetStudio to get the shader names. AssetBundleExtractor was showing everything as unnamed.
Hello, would you be able to share what code line you changed?

Somehow on my end it ends up being transparent, when i changed "int second = 8" to "int second = 0 or 1" under "_BlockSize"
 
Last edited:

Dagod1166

Newbie
Nov 3, 2018
64
139
198
Hello, would you be able to share what code line you changed?

Somehow on my end it ends up being transparent, when i changed "int second = 8" to "int second = 0 or 1" under "_BlockSize"
Search for colMask change float val = 0 repeat for all colMask lines.
 
  • Like
Reactions: TKNash

Eagle1900

Forum Fanatic
Modder
Oct 7, 2022
4,995
28,843
667
thank you very much for this very well explained guide.
I must say that it works great and has solved many problems for me.
great :cool:
 

kumarin

Engaged Member
Feb 19, 2022
2,590
4,528
387
got problem uncensored this one
anyone got an idea?
The original textures are baked already. There are some uncensored parts are exists on texture file. but not all parts. may be dev have an uncensored.
 
  • Like
Reactions: spokkimax

kushkush

New Member
Jan 21, 2020
8
2
126
Can someone tell me how to uncensor Musumate ? I tried using FFDec but I dont have any clue to find the mosaic, but i think its not baked.
 
  • Like
Reactions: spokkimax

kumarin

Engaged Member
Feb 19, 2022
2,590
4,528
387
Can someone tell me how to uncensor Musumate ? I tried using FFDec but I dont have any clue to find the mosaic, but i think its not baked.
May be you're talking about . as screen-shot of dlsite, there are white-light is blocking. And attached file of you, It's semi-censored. is unity or unreal game? I searched.
"ファイル形式 Flash"
Is flash game ?
 
Last edited:

kushkush

New Member
Jan 21, 2020
8
2
126
May be you're talking about . as screen-shot of dlsite, there are white-light is blocking. And attached file of you, It's semi-censored. is unity or unreal game? I searched.
"ファイル形式 Flash"
Is flash game ?
Yes it is. Its quite hard to find all the scene from the game because its only read SWF file. And even harder to find the mosaic because i only see they made some scene with video clip but the game mechanism is a bit simulation so i think they blend the mosaic some where
 

Selliei

New Member
Dec 2, 2021
6
1
70
How about this game?

I've tried that but it didn't work
 

kumarin

Engaged Member
Feb 19, 2022
2,590
4,528
387
How about this game?

I've tried that but it didn't work
Use attached file. It's plugin of BepInEx.
Source is simple.
C:
        [HarmonyPatch(typeof(MosaicSystem), "Add")]
        public class MosaicSystem_Add
        {
            [HarmonyPrefix]
            public static bool Prefix()
            {
                return false;
            }
        }
If you want to not use BepInEx, Edit Assembly-CSharp.dll file is more simple. just delete source in MosaicSystem.Add().
 
  • Heart
Reactions: Selliei