Gamespace (AGK) - Example of how to submit and retrieve scores using the online GameSpace system.
Memblock drawing functions (DBP) - A set of anti-aliased drawing routines that write directly to an image memblock. This is useful for creating custom graphics while preserving background transparency.
The box and circle commands can draw either an outline or filled-in. The circle has a radial gradient function.
The preserveBackground option does just what it says. If turned off, the drawing routine will overwrite any pixel data currently in its pixels' positions. If turned on, it will use a form of alpha compositing to blend the drawing operation on top of any current data. It has a few quirks here and there, but works well in most situations.
Draw Text (AGK) - Somtimes you just want to output some data to the screen in a specific area, but print() doesn't allow you position it and the other default text commands require you create an object for every line of text and requires you to manually update that object if you're outputting say a variable that changes during main loop. This is a quick fix to those problems.
Last Key Press (AGK) - getRawLastKey() only return the last key to be pressed, even after it's been released. This snippet will track multiple keys so that getLastKeyPress() will return whichever key is currently still pressed. So if you press multiple keys then release one, it'll return the last key that's still pressed down, where the AGK version could still return the number of the key you've already released.
HTTP retrieve page (AGK) - Example shows how to retrieve the html code/response from an HTTP url.
Vector Library (AGK) - A library of 2D and 3D vector commands.
spinning coins (DBP) - Demo of rotating coins dropping from the sky
Code which typically involves achieving specific graphical effects such as flood fill, texture generation, or 3D special effects like particles and bloom