Difference between revisions of "Legacy:FlipScreen"

From Spherical
Jump to: navigation, search
(Created FlipScreen page)
(No difference)

Revision as of 22:25, 20 May 2013


Causes the back buffer to be displayed to the screen for one time frame.

Usage

FlipScreen();


Notes

Must be called every time you intend to draw stuff to the screen (outside the render script of the map engine).

Examples

Drawing stuff to the screen:

var a = GetSystemArrow();
var f = GetSystemFont();

while (!IsKeyPressed(KEY_ESCAPE)) {
    a.blit(50, 50);
    f.drawText(0, 0, "An arrow!");
    FlipScreen();
}


See also