alpha transparency in panel ?

ABK

Well-known member
Is this possible to have type 4 ? Id like to have ABCDetc. order to setup the floor from different panels, i know i could make bglayer with alpha as panel but it doesnt support ABDC... order option(would be nice if it would).
So, can this be enabled so panel would support alpha transparency ? Id like to soften the border between panel and background.
 
Layer is the way to go. Otherwise you need a levescript.
If I were you I would try the layer solution.

This is how the script works.

levelscript @script
void main() {
  changelayerproperty("panel", 0, "alpha", 4);
  changelayerproperty("panel", 3, "alpha", 4);
  changelayerproperty("panel", 5, "alpha", 4);
....
}
@end_script
 
Back
Top Bottom