加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 藤井紫 于 2016-3-27 23:23 编辑
1、战斗中敌人攻击我方角色时,会提示回复了TP并且有音效,如何去除这个提示并删除音效?
2、如何在菜单界面显示角色当前TP值? 已解决
解决方法为在window_base里面加入
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) draw_actor_tp(actor, x + 120, y + line_height * 3) end
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)
draw_actor_tp(actor, x + 120, y + line_height * 3)
end
的倒数第二行
3、如何战斗后保留TP值? 已解决 |