I finally got around to trying advice given to me earlier on this thread about making multi-layered backgrounds, but I seem to have encountered a problem. I believe I followed the advice I was given, but I can only get one background to appear. The second one doesn't appear on top.
Here's what I have for my @Background (I've already declared "bg" and "bg2" at the start of the script)
@BackGround{
SetTexture(bg);
SetGraphicRect(0,0,256,256);
SetGraphicScale(1.75,1.75);
SetGraphicAngle(0,0,0);
DrawGraphic(GetCenterX,GetCenterY);
SetTexture(bg2);
SetGraphicRect(0,0,256,256);
SetGraphicScale(1.75,1.75);
SetGraphicAngle(0,0,0);
DrawGraphic(GetCenterX,GetCenterY);
}
I'm trying to get "bg2" to appear on top of "bg", but it doesn't seem to be working.