[16 Jul 2012] Bug in DisplayTransitionFX()
Posted: Sat Jun 13, 2020 5:32 pm
Note: This is an archived post that was originally sent to the Hollywood mailing list on Mon, 16 Jul 2012 19:56:11 -0000
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:
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)