When I use the generic skybox code it looks like this:
Is the ground transparent because my graphics card is out of date?
Skybox questions.
Skybox questions.
Over 3 years (has it been that long?) and just now I noticed the day and month of my birthday were switched. Whoops!
Some 2d games I made, haven't made anything in a year though O.o
http://www.yoyogames.com/users/GMer56
Some 2d games I made, haven't made anything in a year though O.o
http://www.yoyogames.com/users/GMer56
- darksmaster923
- Posts: 1857
- Joined: Wed Jan 03, 2007 10:32 pm
- Location: Huntington Beach, California, USA
Re: Skybox questions.
Doubt it. That's actually a skydome, not a skybox, so you'll need to show a script and stuff.
Herp derp.
Re: Skybox questions.
OK, here is the code:
Basically the Sky2.s file...
Code: Select all
{
Start[ ()
{
SetHeightOrigin(-1000);
SetLandscapeSize(40200);
SetSkyDome(4920, 128);
SetDesiredTriangles(1024);
SetTerrain("cflat.bmp", "desert256.bmp");
SetDistanceFromSunFactor(40200);
SetTwilightDistanceFromHorizon(0.6);
SetLocation(920, 10, 16, 23);
SetTwilightColor(255, 101, 114, 255);
SetSkyColor(116, 208, 241, 255);
SetTimeScale(512);
DisableSun(false);
SetSunColor(255, 226, 146, 255);
SetSunScale(8);
SetAmbientLightColor(128, 128, 128, 128);
DisableCloud(false);
UseSkyFog(true);
} ]
Run[ ()
{
SetWindDirection("northeast");
} ]
}
Over 3 years (has it been that long?) and just now I noticed the day and month of my birthday were switched. Whoops!
Some 2d games I made, haven't made anything in a year though O.o
http://www.yoyogames.com/users/GMer56
Some 2d games I made, haven't made anything in a year though O.o
http://www.yoyogames.com/users/GMer56
- darksmaster923
- Posts: 1857
- Joined: Wed Jan 03, 2007 10:32 pm
- Location: Huntington Beach, California, USA