[16 Jul 2012] Bug in DisplayTransitionFX()

Contains all messages from the Hollywood mailing list between 01/2006 and 08/2012
Locked
PEB
Posts: 567
Joined: Sun Feb 21, 2010 1:28 am

[16 Jul 2012] Bug in DisplayTransitionFX()

Post by PEB »

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:

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)
User avatar
airsoftsoftwair
Posts: 5433
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

[19 Jul 2012] Re: Bug in DisplayTransitionFX()

Post by airsoftsoftwair »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Thu, 19 Jul 2012 21:18:41 +0200
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:
Right, that's a bug. It's fixed now.
Locked