Project

General

Profile

Bug #121

Updated by Baptiste Pillot about 4 years ago

Limit bob isn't working - in the below code no bob is drawn at all when the limit bob command is un-commented (works as expected in Amos): 

 ```aoz 
 #manifest:"amiga" 
 #fullScreen:true 
 #splashScreen:false 

 screen open 0,320,200,16,lowres 
 curs off: flash off: cls 0 
 // make a bob 
 ink 2 : bar 0,0 to 16,16 : get bob 1,0,0 to 16,16 : cls 0 

 box 64,100 to 256,150 // Box drawn to show limits 

 do 
   bob 1,x screen(x mouse),y screen(y mouse),1 
 //    limit bob 1,64,100 to 256,150 // un-comment in this line - and there's no bob at all! 
   wait vbl 
 Loop 
 ```

Back