Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

window BG

LTN Games

Master Mind
Resource Team
Xy$
0.01
I made a plugin to allow you to replace the Message Window with a background, I still never uploaded it though. What windows are you looking to change? I'm pretty sure Mr.Trivel created a plugin that let's you use images for all menu scenes.
 

skrill

Villager
Xy$
0.00
ell
I made a plugin to allow you to replace the Message Window with a background, I still never uploaded it though. What windows are you looking to change? I'm pretty sure Mr.Trivel created a plugin that let's you use images for all menu scenes.
it is window i made by scripting
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
That's really easy, you can just create a sprite within your window class then add it as a child and set the opacity of the window to 0.

JavaScript:
    Window_Class.prototype.createBackground = function() {
        this._background = new Sprite();
        this._background.bitmap = ImageManager.loadSystem('filename');
        // loadSystem will load image in System folder
        // loadPicture will load image in picture folder etc.
        // Additional information if needed
        // this._background.x = 0;
        //this._background.y  = 0
        this.addChild(this._background);
    };
 
Top