- Joined
- Oct 7, 2019
- Messages
- 3
- Reaction score
- 1
- First Language
- Englih
- Primarily Uses
- N/A
Hi. I apologize if this has been answered elsewhere, but I've been searching and haven't found anything. I'm trying to change how battles start, namely removing the zoom and flash, and using whatever the current tileset is as the current baackground - and without blurring.
Right now, I've managed something very basic while tinkering with the code: a script that removes both the zoom and the flash:
However, I'm having a hard time making it so there's no black screen transition, and so it doesn't blur whatever is on screen at the time. Any ideas? Thanks in advance.
Right now, I've managed something very basic while tinkering with the code: a script that removes both the zoom and the flash:
Code:
(function($) { // {
$.prototype.startFlashForEncounter = function(duration) {
};
})(Scene_Map); // }
(function($) { // {
$.prototype.setZoom = function(x, y, scale) {
};
})(Game_Screen);
However, I'm having a hard time making it so there's no black screen transition, and so it doesn't blur whatever is on screen at the time. Any ideas? Thanks in advance.