- Joined
- Sep 6, 2016
- Messages
- 1
- Reaction score
- 0
- First Language
- English
- Primarily Uses
So i'm trying to find a way to change the animation for the Vehicles, so like the player they don't use a step animation until they move, i'm having a bit of trouble with this can someone help?
i have found a way to do the opposite with the player, but i'm yet to find a way to manipulate the Vehicles.
this is the only function that i have found that i can do anything with the animations, but its not quite what i'm trying to do, by changing this i can only make the Vehicle stop all animations.
Game_Vehicle.prototype.getOn = function() {
this._driving = true;
this.setWalkAnime(true);
this.setStepAnime(true);
$gameSystem.saveWalkingBgm();
this.playBgm();
};
Can anyone help? thanks.
i have found a way to do the opposite with the player, but i'm yet to find a way to manipulate the Vehicles.
this is the only function that i have found that i can do anything with the animations, but its not quite what i'm trying to do, by changing this i can only make the Vehicle stop all animations.
Game_Vehicle.prototype.getOn = function() {
this._driving = true;
this.setWalkAnime(true);
this.setStepAnime(true);
$gameSystem.saveWalkingBgm();
this.playBgm();
};
Can anyone help? thanks.


