设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1715|回复: 5
打印 上一主题 下一主题

[有事请教] 如何上下载具后保持人物的移动速度?

[复制链接]

Lv3.寻梦者

梦石
0
星屑
4638
在线时间
684 小时
注册时间
2013-1-18
帖子
710
跳转到指定楼层
1
发表于 2022-7-28 07:42:42 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
我发现人物只要上了载具,下来以后就会恢复游戏默认的移动速度。有什么办法可以让人物无论进入任何载具,下来以后还是保持之前的移动速度呢?

Lv3.寻梦者

梦石
0
星屑
4362
在线时间
550 小时
注册时间
2018-11-12
帖子
114
4
发表于 2022-7-29 04:38:38 | 只看该作者
var _game_Player_getOnVehicle = Game_Player.prototype.getOnVehicle;
Game_Player.prototype.getOnVehicle = function() {
        this.OldMoveSpeed = this._moveSpeed;
        _game_Player_getOnVehicle.call(this);
};
Game_Player.prototype.getOffVehicle = function() {
    if (this.vehicle().isLandOk(this.x, this.y, this.direction())) {
        if (this.isInAirship()) {
            this.setDirection(2);
        }
        this._followers.synchronize(this.x, this.y, this.direction());
        this.vehicle().getOff();
        if (!this.isInAirship()) {
            this.forceMoveForward();
            this.setTransparent(false);
        }
        this._vehicleGettingOff = true;
        this.setMoveSpeed(this.OldMoveSpeed);
        this.setThrough(false);
        this.makeEncounterCount();
        this.gatherFollowers();
    }
    return this._vehicleGettingOff;
};

//将上述代码复制粘贴到任意插件最下面,即可实现楼主的想法。希望对你有所帮助。

点评

感谢大佬!您已经帮助我解决好几个问题了,您在我心中现在就是神一般的存在!我要天天仰视,膜拜您。  发表于 2022-7-29 11:23
回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
7665
在线时间
1437 小时
注册时间
2018-12-16
帖子
2025
3
发表于 2022-7-28 13:55:17 | 只看该作者
我都是把调整载具速度用成一个公用事件...
然后你就单独调用那个公用事件. 全部的速度就都改过去了....
回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
9852
在线时间
1884 小时
注册时间
2020-1-2
帖子
1089
2
发表于 2022-7-28 09:44:50 | 只看该作者
自己事件搞成载具不就好了

点评

游戏里不少地方都要用到,全部都改有点太麻烦了,而且有些设置可能还会起冲突。如果能有简单的全局修改方法就好了。  发表于 2022-7-28 11:06
B站没人气的夏目漠漠,直播间:5378938实用插件教程点击红字传送
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-18 05:30

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表