Unity Completed Suposeku ~Face Up Battlefuck~ [v25.02.24] [eat the meat]

2.00 star(s) 2 Votes

Dimava

Newbie
Dec 6, 2018
24
38
57
I buy it from dlsite today. it's new update.
google drive
This time the PC version and VR version lol
...
Wait
It's a wrapper
It's a f***ng whapper
Why even make a wrapper
Okay I gonna make a proper version lol
 
  • Like
Reactions: subnada

edale

Member
Apr 1, 2018
101
120
94
Google Drive
update done , I have no idea what is wrappero_O , i just download it from dlsite and upload here.
Thank you!

Suposeku_Desktop.exe and Suposeku_VR.exe are the wrappers, that work to launch \Game_Data\Suposeku.exe with different options.

I actually prefer the straight-from-dlsite-and-unaltered version of the game, I use it in both desktop and VR modes without any of the issues others here have reported. Plus, since I'm actually on a forum with the creator of the game, it lets me accurately report bugs to him without worrying the bug is caused by a mod.
 
Aug 3, 2017
26
23
147
Here's decen mod but I dont want to bother compiling it

C:
using UnityEngine;
using System.Collections.Generic;

string mosaicTextureName = "Mosaic";
List<SkinnedMeshRenderer> mosaicRenderers = new List<SkinnedMeshRenderer>();

// Find SkinnedMeshRenderers with Mosaic Materials
SkinnedMeshRenderer[] allRenderers = UnityEngine.Object.FindObjectsOfType<SkinnedMeshRenderer>();

foreach (SkinnedMeshRenderer renderer in allRenderers)
{
    if (renderer.materials != null && renderer.materials.Length > 0)
    {
        foreach (Material material in renderer.materials)
        {
            if (material != null && material.name.Contains(mosaicTextureName))
            {
                mosaicRenderers.Add(renderer);
                break;            }
        }
    }
}

// Remove Mosaic Materials and Apply New Material Array
foreach (SkinnedMeshRenderer renderer in mosaicRenderers)
{
    List<Material> newMaterialsList = new List<Material>(); // Temporary list to hold non-mosaic materials

    foreach (Material material in renderer.materials)
    {
        if (material != null && !material.name.Contains(mosaicTextureName))
        {
            newMaterialsList.Add(material); // Add the material if it doesn't contain the mosaic texture name
        }
    }

    // Convert the list to an array and assign to the renderer
    renderer.materials = newMaterialsList.ToArray();
}
Google Drive
update done , I have no idea what is wrappero_O , i just download it from dlsite and upload here.
With zero C# and Unity expertise, I managed to decompile and recompile the game files from this update here, using the code graciously provided above. Here is a decensor mod for what I think is the May 30th update, or whatever is linked here. Back up preexisting file (again, this is my first time doing this, this is provided as is), but just drop into Game\Game_Data\Suposeku_Data\Managed and replace existing file.
 

chaojijuru

Newbie
May 12, 2025
20
1
12
With zero C# and Unity expertise, I managed to decompile and recompile the game files from this update here, using the code graciously provided above. Here is a decensor mod for what I think is the May 30th update, or whatever is linked here. Back up preexisting file (again, this is my first time doing this, this is provided as is), but just drop into Game\Game_Data\Suposeku_Data\Managed and replace existing file.
Your patch will prevent you from changing clothes
 

Teitonii

New Member
Jan 26, 2018
9
4
13
yeah this churns gpu, i assume it's running in unlimited fps? i don't have unity so not sure what to do about that.
 
2.00 star(s) 2 Votes