- Joined
- Jun 30, 2017
- Messages
- 42
- Reaction score
- 35
- First Language
- spanish
- Primarily Uses
- RMMV
Hi, I am trying to draw a image into the screen, with PIXI.
Currently using:
That works, but the image is on the top layer, and I need to draw the image on the 'floor' layer, between tileset <-> events.
Maybe some container for each layer exists?
Thanks
Currently using:
Code:
var img = PIXI.Sprite.fromImage('./img/pictures/logo.png');
SceneManager._scene.addChild(img);
That works, but the image is on the top layer, and I need to draw the image on the 'floor' layer, between tileset <-> events.
Maybe some container for each layer exists?
Thanks