Extra points if it's possible to be able to make it so pictures 1-50 is on the default picture layer and pictures 51-100 are above all other elements! :kaopride:
As a side note, the current solution I have to draw pictures above all other elements is this:
JS Script
JavaScript:
window._picName = new Sprite(ImageManager.loadPicture("picture"));
SceneManager._scene.addChild(window._picName);
window._picName.x = $gameVariables.value(1);
window._picName.y = $gameVariables.value(2);Thanks to anyone in advance that might know a good solution! Also if you're not sure on a solution, thank you for just reading this :kaophew:
Example Images of Issue:
Example 1
Example 2
How It Should Function:
Example 3
Example 4