赞 | 1 |
VIP | 20 |
好人卡 | 8 |
积分 | 3 |
经验 | 6181 |
最后登录 | 2022-8-5 |
在线时间 | 271 小时 |
Lv2.观梦者 神隐的主犯
- 梦石
- 0
- 星屑
- 283
- 在线时间
- 271 小时
- 注册时间
- 2008-2-22
- 帖子
- 7691
|
- #==============================================================================
- # ■ Game_Player
- #------------------------------------------------------------------------------
- # 处理主角的类。事件启动的判定、以及地图的滚动等功能。
- # 本类的实例请参考 $game_player。
- #==============================================================================
- class Game_Player < Game_Character
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- alias reisen_110006_refresh refresh
- def refresh
- reisen_110006_refresh
- @old_character_name = @character_name
- @old_character_index = @character_index
- end
- #--------------------------------------------------------------------------
- # ● 更新画面
- #--------------------------------------------------------------------------
- alias reisen_110006_update update
- def update
- reisen_110006_update
- if dash?
- @is_dash = true
- set_graphic("People3.png", 1)
- else
- if @is_dash
- set_graphic(@old_character_name, @old_character_index)
- @is_dash = false
- end
- end
- end
- end
复制代码 必须使用新游戏来测试或者开始使用~~~~ 需要修改的地方就是 26 行的文件名和序号 |
评分
-
查看全部评分
|