Project1

标题: 请问怎么修改小船的移动速度? [打印本页]

作者: nhycs01    时间: 2023-7-13 11:20
标题: 请问怎么修改小船的移动速度?
我想让小船的移动速度和大船一样,都是2倍移速,请问该怎么改呢?
作者: RyanYe    时间: 2023-7-13 14:45
  1.     Game_Vehicle.prototype.getOn = function() {
  2.                 $gameTemp.reserveCommonEvent(42);//Edited by Ryan Ye, CE:GetOn_Vehicle
  3.         this._driving = true;
  4.         this.setWalkAnime(true);
  5.         this.setStepAnime(true);
  6.         $gameSystem.saveWalkingBgm();
  7.                 //this.playBgm();        //This line is originally located in rpg_objects.js
  8.     };

  9.     Game_Vehicle.prototype.getOff = function() {
  10.         this._driving = false;
  11.         this.setWalkAnime(false);
  12.         this.setStepAnime(false);
  13.         this.resetDirection();
  14.                 $gameTemp.reserveCommonEvent(43);//Edited by Ryan Ye, CE:GetOff_Vehicle
  15.                 //$gameSystem.replayWalkingBgm();        //originally located in rpg_objects.js
  16.     };
复制代码


公共事件42是把角色改速度到2倍速
公共事件43是恢复角色速度
楼主试一试?(我现在没法给楼主做测试,因此不保证代码的正确性)





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1