赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
虽然不知道你要做什么,但我先放一个链接在这里
https://rpg.blue/thread-476318-1-1.html
注释掉显示HP和MP可以在这边改
- class Window_Base < Window
- #--------------------------------------------------------------------------
- # ● 绘制简单的状态
- #--------------------------------------------------------------------------
- def draw_actor_simple_status(actor, x, y)
- draw_actor_name(actor, x, y)
- draw_actor_level(actor, x, y + line_height * 1)
- draw_actor_icons(actor, x, y + line_height * 2)
- draw_actor_class(actor, x + 120, y)
- # draw_actor_hp(actor, x + 120, y + line_height * 1)
- # draw_actor_mp(actor, x + 120, y + line_height * 2)
- end
- end
复制代码 |
评分
-
查看全部评分
|