UN-loading an image
Monkey Forums/Monkey Programming/UN-loading an image
| ||
Each time the player starts a new game, certain images will be loaded at random. How do I dispose of images from the last game I no longer need in memory? |
| ||
http://www.monkey-x.com/docs/html/Modules_mojo.graphics_Image.html#DiscardLocal image := CreateImage(10,10) image.Discard() |
| ||
Ack, it was right in front of me and I couldn't see it - must be time for a break. Thanks :) |