赞 | 7 |
VIP | 866 |
好人卡 | 185 |
积分 | 32 |
经验 | 130059 |
最后登录 | 2024-10-29 |
在线时间 | 3618 小时 |
Lv3.寻梦者 双子人
- 梦石
- 0
- 星屑
- 3185
- 在线时间
- 3618 小时
- 注册时间
- 2009-4-4
- 帖子
- 4154
|
- class Game_Character
- #--------------------------------------------------------------------------
- # ● 面向向下
- #--------------------------------------------------------------------------
- def turn_down
- unless @direction_fix
- @direction = 2
- @stop_count = 0
- end
- end
- #--------------------------------------------------------------------------
- # ● 面向向左
- #--------------------------------------------------------------------------
- def turn_left
- unless @direction_fix
- @direction = 4
- @stop_count = 0
- end
- end
- #--------------------------------------------------------------------------
- # ● 面向向右
- #--------------------------------------------------------------------------
- def turn_right
- unless @direction_fix
- @direction = 6
- @direction = 8 if @character_name == "文件名"
- @stop_count = 0
- end
- end
- #--------------------------------------------------------------------------
- # ● 面向向上
- #--------------------------------------------------------------------------
- def turn_up
- unless @direction_fix
- @direction = 8
- @direction = 6 if @character_name == "文件名"
- @stop_count = 0
- end
- end
- end
复制代码 请在Main前面插入(额……) |
|