Comments

Log in with itch.io to leave a comment.

Hi ! I'm pretty new to RPG Maker plugin usage. How can I modify the Actor Speed parameter during the game?

You can do a script command to change the default:

Gimmer_Core.ActorSpeed.ActorSpeed = 2.3;

But I'm not sure this will change the speed of the actor, as I'm not sure that object ever reloads.

You can change the speed of the player by doing the script call:

$gamePlayer.setMoveSpeed(2.3);