how do you remove censorship ? i have some games that i would like to remove censored parts too... what did u use?
I only know how to attempt it on unity games and even then only the most common type of censor, some developers get fancy and implement it in other ways which would be far beyond me to fix.
https://f95zone.to/threads/how-to-uncensor-almost-any-unity-game.17914/
Check out this link, it seems like a lot of info but it's pretty simple once you get the hang of it. I find a lot of unity games simply use the "Material Mosaic" method but I've had a couple where I've had to get rid of a shader Mosaic. Once it gets more complicated than that, I'm sadly out of my depth.
You don't really need Unity Asset Studio, but it can be useful if you can't find mosaic material or shader to check if the censor is actually part of the sprites and not added by the game, to save you wasting time.
All in all what I do is.
1. Check if the censor is part of the sprites or added by the game, after some time you can usually tell simply from images. Like I did with this game, I didn't actually play the game before uncensoring it lol. If I can't tell from images and the game might take too long to get to a censored scene then I might use Unity Asset Studio to double-check to save me time.
2. Use UABE and check resources.assets for a material or materials that could be the censor
3. If It doesn't seem to be in there I have to painstakingly work through each sharedassets(number).assets
4. If I find them then export dump, edit _BlockSize, Import Dump, save outside of Data folder, move and overwrite .asset into Data folder
5. Check if it worked
6. If it didn't work, repeat 2-3 looking for a shader and do the same as 4 but instead change the number given in the tutorial
7. If that doesn't work I give up because the last few times I've tried other methods of decensoring I haven't had much luck.