Hi Andreas,
There's a bug in DisplayTransitionFX() that causes any layers associated with the BGPic to be displayed as part of the BGPic itself (in addition to still being layers on top of the BGPic). Here's some sample code:
Code: Select all
@BGPIC 1, "Background1"
@BGPIC 2, "Background2"
@BRUSH 1, "Test.png", {LoadAlpha=True}
EnableLayers()
DisplayBrush(1, #CENTER, #CENTER, {Name="TestLayer"})
DisplayBGPic(2)
DisplayTransitionFX(1, {Type=#RECTCENTER, Speed=#FASTSPEED})
;DisplayBGPic(1) can be added here as a work-around.
TranslateLayer("TestLayer", 20, 0)