Hallo,
ich habe hier einen einfachen Code und möchte, dass sich das PANEL hinter die "Animation" schiebt. Quasi eine Ebenenverschiebung^^
Code:
BMAP* titel_bild = "MissionFuture.png";


PANEL* test_pan =
{
   bmap = titel_bild;
   pos_x = 0;
   pos_y = 0;
   flags = OVERLAY | SHOW;
   layer = 1;
}


function drehende_erde()
{
	while (1)
	{
		my.frame += 0.8 * time_step;
		if (my.frame >= 5) my.frame -= 4;	
		wait (1);
	}
}

function main()
{
	level_load("");
	ent_create("drehendeerde+4.png", vector(600,50,0), drehende_erde);
}



Wisst ihr, wie ich den Programm ausdrücke, dass das Panel hinter der "Animation" sein soll, und nicht wie bisher, umgekehrt?