public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

show choice above window hud

BMM Archive · July 15, 2026

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

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
  };
Protected download

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

Referenced Images / Attachments

Capture.JPG
Capture.JPG
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.

#039#rpg-maker-archive#js-learning

Replies (0)

No replies yet.

0 replies 2 views

Log in to reply.

User Avatar