赞 | 0 |
VIP | 77 |
好人卡 | 306 |
积分 | 1 |
经验 | 85662 |
最后登录 | 2023-11-23 |
在线时间 | 1782 小时 |
Lv1.梦旅人 虱子
- 梦石
- 0
- 星屑
- 121
- 在线时间
- 1782 小时
- 注册时间
- 2010-6-19
- 帖子
- 3597
|
本帖最后由 Wind2010 于 2012-1-31 17:20 编辑
draw_actor_class的定义本来在Window_Base中,但被搬到Window_MenuStatus里了
在Window_MenuStatus中的30-39行:- #--------------------------------------------------------------------------
- # ● 职业的描绘
- # actor : 角色
- # x : 描画目标 X 坐标
- # y : 描画目标 Y 坐标
- #--------------------------------------------------------------------------
- def draw_actor_class(actor, x, y)
- self.contents.font.color = normal_color
- self.contents.draw_text(x, y, 236, 32, actor.class_name)
- end
复制代码 剪切到Window_Base中
另外,在第一幅地图中,能走到桌子上这种Bug大丈夫? |
|