[Return]

Report a post

Preview
Snow Queen characters and maps
I've just uploaded three new characters and two new maps to https://db.bepis.moe/user/view/25211
The characters and maps are from The Snow Queen by Hand Christian Andersen, mostly based on the depiction in the 1957 Soviet animatied film adaptation.

Characters:
1. Kai
2. Gerda
3. Little Robber Girl

Maps:
1. Kai and Gerda's balcony garden
2. Little Robber Girl's room

NOTE:
For the balcony garden you will need to run the following script to make shadows behave (I have found this script long time ago on discord and it was a lot of help in many situations ever since; if you're using Koikatsu save this somewhere you'll need it often):

foreach (var r in GameObject.FindObjectsOfType<MeshRenderer>())
{
r.castShadows = true;
r.receiveShadows = true;
if(r.gameObject.layer == 11)
r.gameObject.layer = 10;
}
QualitySettings.shadowDistance = 100;

To use the script, first press F12, a menu will appear at the bottom of the screen, click the button that mentions a console. That copy the script above into the console and run it (press Enter). Click anywhere in the scene to switch focus away from the console then press F12 again to hide it and the menu. You will have to do this every time you load the scene.

NOTE 2: There is also a bush just below the balcony, to remove it bring up the F12 menu, in this menu find Object Browser, then use the object browser to find the bush and set it's isActive property to false. This also doesn't persist when saving and loading, but you can forego removing the bush if it doesn't get caught on your camera angle anyway.

If F12 doesn't do anything, it used to be Pause Break in some older version of BetterRepack, but you should consider an update. Or if you're not using BetterRepack at all, you totally should.
Post number No.52042
Board 3D CGI
Optional. Describe what's wrong with it.