Displaying text

How to show some text on the screen

Text is handled by TextSprites. They are like regular sprites, but used to draw text rather than images.
App = function() { this.init = function() { var textSprite = new TextSprite('Hello World Wide Web', '32px Arial', 'blue', 'center'); var obj = new SceneObject(textSprite); wade.addSceneObject(obj); }; };
Your code was executed successfully!