User Tools

Site Tools


notes:data:fall2023:projects:mpg0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:data:fall2023:projects:mpg0 [2023/09/05 01:55] – [Sprites] mfee1notes:data:fall2023:projects:mpg0 [2023/09/06 19:25] (current) – [Bounds checking] dwhite26
Line 85: Line 85:
 ====Bounds checking==== ====Bounds checking====
  
-The bounds of the Vircon32 emulator are 640x360. will 0,0 being at the top left and 640, 360 being at the bottom right. you can use these maximum width and height values to see if something comes in contact with them+The bounds of the Vircon32 emulator are 640x360. will 0,0 being at the top left and 640, 360 being at the bottom right. you can use these maximum width and height values to see if something comes in contact with them
 + 
 +To do this you will need a max and min X , and a max and min Y. These will tell your object where they can and cannot go. 
 +<code> int MaxX = 30 
 +       if (objectX > MaxX) 
 +         objectX = MaxX; 
 +</code>
 ====Handling motion==== ====Handling motion====
  
notes/data/fall2023/projects/mpg0.1693878942.txt.gz · Last modified: 2023/09/05 01:55 by mfee1