Antialias
BlitzMax Forums/BlitzMax Beginners Area/Antialias| 
 | ||
| In the Rockout demo the ship looks antialiased but in another demo using the ship it looks pixellated ... what's the deal?  I also remember the original version of Rockout looking slightly jaggy ... however I don't see any special command to make it smooth ... | 
| 
 | ||
| when you load an image, you can change the flags like 0|maskedimage , can get pixellated images or filtered and smooth etc etc | 
| 
 | ||
| It's a parameter of LoadImage, I think. The flags after the filename. FILTEREDIMAGE - The image is smoothed when rotated or scaled. | 
| 
 | ||
| Cool | 
| 
 | ||
| You may also need to position an object with floating point X and Y coords e.g. 15.4, 192.11, in order to see more change in the antialiasing. | 
| 
 | ||
| Also see AutoImageFlags. |