Hello,

I have difficulties to force Sky dome to move using U/V parameters.

This code is NOT working although if I understood well from the manual and from a few topics I already checked, it should be working:

Code:
lvl_sky = ent_createlayer("sky_dome_1.tga", SKY | DOME | SHOW, 10);
lvl_sky.flags |= TRANSLUCENT;
lvl_sky.alpha = 60;
	
lvl_sky.v = 2;
lvl_sky.u = 2;



This next piece of code however is working, but I have a problem that even "0.002 * time_step" is too fast movement and with less than 0.002, it won't move.

Code:
lvl_sky = ent_createlayer("sky_dome_1.tga", SKY | DOME | SHOW, 10);
lvl_sky.flags |= TRANSLUCENT;
lvl_sky.alpha = 60;
	
while (1)
{
	lvl_sky.v -= 0.002 * time_step;
	lvl_sky.u += 0.002 * time_step;
	wait(1);
}



How can I force sky dome to move properly?