Hi, I can't seem to get a skydome working in Gamestudio A8. The two frames of the skydome texture appear side by side in-game and using the '+' to indicate more frames gives a "Malfunction W1301: SKYWHITE+2.TGA: Can't open file..." instead of displaying them over each other as layers. The only way that the skydome works is if you take away the "+2" at the end of the file name.

In the manual it says:
Originally Posted By: The GameStudio Manual
If the sky entity contains several frames (indicated by a '+' in the image name), they are displayed one over each other as cloud layers.

The following code was also taken directly from the manual with the filename changed from "skyblue+2.tga" to "skywhite+2.tga":
Code:
ENTITY* skyClouds =
	{
		type = "skywhite+2.tga";
		layer = 3;
		scale_x = 0.25;
		tilt = -10;
		u = 1.5;
		v = -1.0;
		flags2 = SKY | DOME | SHOW;
	}


I only noticed this problem in A8 but, from what I remember, it did not occur in A7.

Thanks,
82RJZAE