- Joined
- Jun 11, 2014
- Messages
- 20
- Reaction score
- 35
- First Language
- Portuguese
- Primarily Uses
- RMVXA
Description of the Feature:
Code for Implementation:
Code by Hudell
Mockups:
Translate to english:
1- até -> to
2- Todas -> All
Why this suggestion?
Who likes to style their own game, usually create systems, mini-games that use many images. It is often extremely annoying to delete images one by one.
- Clear/Delete many images in a just command/code.
Code for Implementation:
Code by Hudell
Code:
// Erase Pictures
Game_Interpreter.prototype.command235 = function() {
var startIdx = this._params[0];
var endIdx = this._params[1];
for (var i = startIdx; i <= endIdx; i++) {
this.erasePicture(i);
}
return true;
};
Translate to english:
1- até -> to
2- Todas -> All
Why this suggestion?
Who likes to style their own game, usually create systems, mini-games that use many images. It is often extremely annoying to delete images one by one.
