Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: show choice above window hud
- Original author: pasunna
- Original date: April 10, 2019
- Source thread: https://forums.rpgmakerweb.com/threads/show-choice-above-window-hud.107808/
- Source forum path: Game Development Engines > RPG Maker Javascript Plugins > Learning Javascript
Summary
hi I edit some simple plugin to create hud but found out that it's use same window layer as show text hud can I change it's layer or insert it in another layer
Archived First Post
hi
I edit some simple plugin to create hud
http://gameface101.forumotion.com/t2037-simple-hud-plugin
but found out that it's use same window layer as show text hud
can I change it's layer or insert it in another layer
because I want to use the show choice for player
and it just blend with my hud
thank you
Protected download
I edit some simple plugin to create hud
http://gameface101.forumotion.com/t2037-simple-hud-plugin
but found out that it's use same window layer as show text hud
can I change it's layer or insert it in another layer
because I want to use the show choice for player
and it just blend with my hud
thank you
Code:
//--------------------------------------------------------------------------------
// Window HUD
//--------------------------------------------------------------------------------
function Window_HUD() { // Set function call initialize before object is created.
this.initialize.apply(this, arguments);
}
// Inherit parrent class functions.
Window_HUD.prototype = Object.create(Window_Base.prototype);
Window_HUD.prototype.constructor = Window_HUD;
// class variables
//------------------------------------------
// Initialize Window HUD object
//------------------------------------------
Window_HUD.prototype.initialize = function(x, y) {
Window_Base.prototype.initialize.call(this, 0, 0, Graphics.boxWidth, 480);//Graphics.boxHeight); // *super()
//this.opacity = 0;
this._updateWait = 0;
this.refresh(); // refresh window contients.
this.activate(); // *@active = true
};
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadReferenced Images / Attachments
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
2
views
Topic Summary
Loading summary...
