- Joined
- Apr 17, 2015
- Messages
- 72
- Reaction score
- 52
- First Language
- English
- Primarily Uses
Im trying to draw text on a bitmap and I can't seem to get it to show up, here's what I'm working with so far. Im not sure if it's relevant or not but this is "Scene_Map" By the way.
The Bar image shows up just fine, but there isn't any text anywhere on the screen. Can anyone tell me what i'm doing wrong?
Code:
A = new Sprite();
A.bitmap = ImageManager.LoadImage("Bar")
A.bitmap.drawText("test", 0, 0, 100, 30, 'center')
SceneManager._scene.addChild(A)
A.x = 100
A.y = 100
Last edited:
