Oi~ I'm trying to draw a bitmap on my screen, however everytime I try to draw one, it seems to do nothing,
I've looked at the way Sprites & bitmaps are used in other scenes, however I can't seem to make one myself, I'm trying to draw a bitmap to the map also, not sure if that matters, I know in previous rpg makers it changed the way it was drawn here's an example of what I've tried anyways.
not sure if I'm missing a step or what, any help is greatly appreciated~
I've looked at the way Sprites & bitmaps are used in other scenes, however I can't seem to make one myself, I'm trying to draw a bitmap to the map also, not sure if that matters, I know in previous rpg makers it changed the way it was drawn here's an example of what I've tried anyways.
JavaScript:
Scene_Map.example = new Sprite();
Scene_Map.example.bitmap = new Bitmap(48,48)
Scene_Map.example.bitmap.fillRect(0,0,48,48,'white')
//also tried this
Scene_Map.example.bitmap.fillAll('white')
Scene_Map.addchild(Scene_Map.example)