Save-Point
What's up, RMers? - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Games Development (https://www.save-point.org/forum-4.html)
+--- Forum: Development Discussion (https://www.save-point.org/forum-17.html)
+--- Thread: What's up, RMers? (/thread-395.html)



RE: What's up, RMers? - Steel Beast 6Beets - 02-16-2025

Upon more testing, I notice the slowdown only happens when the battle animation and damage display are applied to all enemies. There aren't any issues in single attacks.


RE: What's up, RMers? - DerVVulfman - 02-16-2025

On a basic project with this script in place, I don't see it.

With a party of eight (all the RTP heroes), I set Estelle's Bird Killer to an 'all-enemies' flag and saw no slowdown change with either battle animations or damage pops. It went from 40 to 39fps. Likewise, I changed Hilda's Mage class so she garnered Mass Fire with the same results.

Now, ... the script's update_phase4_step4 method could have been handled differently, using alias to insert the status window updte code instead of rewriting the method... But it does nothing to the animations (but would cause issue with anything that tries to attach code there too).

I think you have something else interfering.


RE: What's up, RMers? - Steel Beast 6Beets - 02-16-2025

Oh, my bad. Multi hit skills work just well in my game.

What's happening on this particular skill is that I'm using a common event to calculate and deal damage based on a variable. That's causing a slowdown when there's more than 4 actors in the battle.

Sorry for the misunderstanding.