The game has unremovable censorship through plugins, and also using unity exlorer didn't help remove it.It was a matter of honor.12 HOURS of war and I was able to remove the mosaic in this game. So, you need to install Unity Explorer, open the c# console and paste this code:
var body = GameObject.Find("体.001");
if (body != null)
{
var meshRenderer = body.GetComponent<MeshRenderer>();
if (meshRenderer != null)
{
foreach (var mat in meshRenderer.materials)
{
// Меняем материал на skin_肌 (или другой из твоего списка)
var newMaterial = Resources.FindObjectsOfTypeAll<Material>().FirstOrDefault(m => m.name.Contains("skin_肌"));
if (newMaterial != null)
{
mat.CopyPropertiesFromMaterial(newMaterial); // Копируем свойства из нового материала
Debug.Log("Материал заменён на skin_肌");
}
else
{
Debug.LogWarning("Материал skin_肌 не найден");
}
}
}
}