- Joined
- Dec 13, 2016
- Messages
- 37
- Reaction score
- 11
- First Language
- English
- Primarily Uses
- RMMV
In the main engine code, in Window_Base there is this method:
Window_Base.prototype.open = function() {
if (!this.isOpen()) {
this._opening = true;
}
this._closing = false;
};
I tried looking for the isOpen() method to see exactly what it was checking, but even a search of all .js files comes up with nothing. Does anyone know where isOpen() is defined?
Window_Base.prototype.open = function() {
if (!this.isOpen()) {
this._opening = true;
}
this._closing = false;
};
I tried looking for the isOpen() method to see exactly what it was checking, but even a search of all .js files comes up with nothing. Does anyone know where isOpen() is defined?

