- Joined
- Aug 15, 2013
- Messages
- 72
- Reaction score
- 32
- First Language
- English
- Primarily Uses
- RMMV
Hi all,
I have the following bit of code which is present in an Update method for a Window:
Currently, this draws a characters picture and a piece of text to the screen, which is working quite well. I'm looking to try to make this disappear after a certain amount of time. The timer portion I can do, but the actual "make this appear and disappear" section is the tricky part. So, in all:
I have the following bit of code which is present in an Update method for a Window:
JavaScript:
this._currentCharacterData = this._characterQueue.shift();
const x = 40;
const y = 58;
this.drawCharacter(this._currentCharacterData.name, this._currentCharacterData.index, x, y);
this.drawText(this._currentCharacterData.text, x + 32, y - 40, Graphics.boxWidth, "left");
- How would one go about controlling the opacity of texts and images created in this manner?
- How would one go about telling RPG Maker that they're no longer needed and can be destroyed?

