CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

Tutorial Unity How To Uncensor (Almost) Any Unity Game

Jun 29, 2022
109
349
RJ01111622

Can anyone help me figure out how to uncensor this? I have tried multiple versions of demosaic plugins but nothing seems to work.
 

kumarin

Well-Known Member
Feb 19, 2022
1,978
2,851
RJ01111622

Can anyone help me figure out how to uncensor this? I have tried multiple versions of demosaic plugins but nothing seems to work.
That game has soft and hard censor.
soft censor can be removed by uncensor plugin or edit resource(shader).
hard censor means that the original textures are baked already. needed edit or redraw textures.
 

Prick

Engaged Member
Jul 17, 2017
2,147
1,956
GAMES RELEASED AFTER 2023!
Read before you comment.

Please don't ignore the big bold red text my guys
 

kumarin

Well-Known Member
Feb 19, 2022
1,978
2,851
RJ380877
The universal patch won't work,the videoclips in the asset file are uncensored,need help!
I download the trial version. and analyzed it.
use dnSpy and open HolidayTrial_Data\Managed\Assembly-CSharp.dll file
search with "ApplyGameSetting"
edit method(right click) the "public void ApplyGameSetting()"
C:
using System;
using Game;
using UnityEngine;

// Token: 0x02000005 RID: 5
public partial class BootLoader : MonoBehaviour
{
    // Token: 0x0600000E RID: 14
    public void ApplyGameSetting()
    {
        if (GameSetting.GetInstance("GameSetting").mosaicEnabled)
        {
            GameBase_Project.EnableMosaicRendererFeature();
            return;
        }
        GameBase_Project.DisableMosaicRendererFeature();
    }
}
it read the "GameSetting.GetInstance("GameSetting").mosaicEnabled" and do enable/disable the mosaic.
insert the below line before "if (GameSetting.GetInstance("GameSetting").mosaicEnabled)"
GameSetting.GetInstance("GameSetting").mosaicEnabled = false;
it makes set "mosaicEnabled" to "False".

Compile and File - Save Module..
 

ValkyrieSCPD

Member
Nov 16, 2023
133
34
I download the trial version. and analyzed it.
use dnSpy and open HolidayTrial_Data\Managed\Assembly-CSharp.dll file
search with "ApplyGameSetting"
edit method(right click) the "public void ApplyGameSetting()"
C:
using System;
using Game;
using UnityEngine;

// Token: 0x02000005 RID: 5
public partial class BootLoader : MonoBehaviour
{
    // Token: 0x0600000E RID: 14
    public void ApplyGameSetting()
    {
        if (GameSetting.GetInstance("GameSetting").mosaicEnabled)
        {
            GameBase_Project.EnableMosaicRendererFeature();
            return;
        }
        GameBase_Project.DisableMosaicRendererFeature();
    }
}
it read the "GameSetting.GetInstance("GameSetting").mosaicEnabled" and do enable/disable the mosaic.
insert the below line before "if (GameSetting.GetInstance("GameSetting").mosaicEnabled)"

it makes set "mosaicEnabled" to "False".

Compile and File - Save Module..
It worked,thx