Actions
Bug #135
closedDual Playfield not working
Start date:
02/05/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
in in the below code only the circles can be seen on Aoz, the bars on screen 1 can't be seen (tested this code on Amos and both can be seen):
#manifest:"amiga"
#fullScreen:true
#splashScreen:false
Screen Open 0,320,200,8,Lowres
Curs Off : Flash Off : Cls 0
For T=0 To 10
Circle Rnd(320),Rnd(200),Rnd(50)+10
Next
Screen Open 1,320,200,8,Lowres
Curs Off : Flash Off : Cls 0
For T=1 To 10
BX=Rnd(320)
BY=Rnd(200)
Bar BX,BY To BX+50,BY+50
Next
Dual Playfield 1,0
Wait Key
Files
Updated by Francois Lionet over 4 years ago
- Status changed from New to Resolved
- Target version set to 0.9.5
Fixed!
Updated by Baptiste Pillot over 4 years ago
- File capture.png capture.png added
- Description updated (diff)
- Status changed from Resolved to Closed
- source : https://www.amos2.fr/ide/Amos2/Ide/Program/483
- run : https://www.amos2.fr/run/tickleman/135
- now bars are visible.
Notice : I am not a "playfields specialist", but I do not understand how the two screens overlap each other (out of this issue scope, so I close) :
Actions