Skybox questions.

Post topics regarding Level Building/Design and Entity Usage with Reality Factory
Post Reply
User avatar
GMer
Posts: 329
Joined: Thu Oct 25, 2007 4:49 pm
Location: On the rock in the 3rd solar orbit.

Skybox questions.

Post by GMer » Mon Aug 31, 2009 3:30 am

When I use the generic skybox code it looks like this:
Image
Is the ground transparent because my graphics card is out of date?
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

User avatar
darksmaster923
Posts: 1857
Joined: Wed Jan 03, 2007 10:32 pm
Location: Huntington Beach, California, USA
Contact:

Re: Skybox questions.

Post by darksmaster923 » Mon Aug 31, 2009 7:01 am

Doubt it. That's actually a skydome, not a skybox, so you'll need to show a script and stuff.
Herp derp.

User avatar
GMer
Posts: 329
Joined: Thu Oct 25, 2007 4:49 pm
Location: On the rock in the 3rd solar orbit.

Re: Skybox questions.

Post by GMer » Tue Sep 01, 2009 12:43 am

OK, here is the code:

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");
	} ]
}
Basically the Sky2.s file...
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

User avatar
darksmaster923
Posts: 1857
Joined: Wed Jan 03, 2007 10:32 pm
Location: Huntington Beach, California, USA
Contact:

Re: Skybox questions.

Post by darksmaster923 » Sat Sep 05, 2009 3:18 am

Try taking out the heightmap?
Herp derp.

Post Reply