- Nov 16, 2023
- 133
- 34
Therefore,is there a way to demosaic this one?That game is not made with unity.
the "licensers.txt" file says that
Therefore,is there a way to demosaic this one?That game is not made with unity.
the "licensers.txt" file says that
I viewed your github files, but I can't find dll files in that list. Is there any somehows?Just a heads-up that this existsYou must be registered to see the links
Uncensors most games that can be uncensored by simply dropping one of the dlls into the plugins folder.
That game's client is Unity 2022.1 + il2cpp. if client is over 2021.2 and il2cpp, use theRJ365207
Need help, DumbRenderDemosaic il2cpp didn't work
That game has soft and hard censor.RJ01111622
You must be registered to see the links
Can anyone help me figure out how to uncensor this? I have tried multiple versions of demosaic plugins but nothing seems to work.
You must be registered to see the links
I downloaded the trial version. the textures are baked already.RJ01112765
need help
I download the trial version. and analyzed it.RJ380877
The universal patch won't work,the videoclips in the asset file are uncensored,need help!
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 makes set "mosaicEnabled" to "False".GameSetting.GetInstance("GameSetting").mosaicEnabled = false;
It worked,thxI 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()"
it read the "GameSetting.GetInstance("GameSetting").mosaicEnabled" and do enable/disable the mosaic.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(); } }
insert the below line before "if (GameSetting.GetInstance("GameSetting").mosaicEnabled)"
it makes set "mosaicEnabled" to "False".
Compile and File - Save Module..
useTrying to figure out how to De-Censor The game Dawn of the Marionette, So far no luck.