赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 14460 |
最后登录 | 2015-2-23 |
在线时间 | 155 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 155 小时
- 注册时间
- 2008-5-10
- 帖子
- 34
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
唉,好不容易把脚本蒙对,头像显示了出来。但战斗中有2个人以上时,游戏速度变慢了,4个人战斗时FTP只剩下5……有没有办法缓解一下……
我在战斗中显示头像的脚本是这么写的
#==============================================================================
# ■ Window_BattleStatus
#------------------------------------------------------------------------------
# 显示战斗画面同伴状态的窗口。
#==============================================================================
class Window_BattleStatus < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 320, 640, 160)
self.opacity = 160
self.contents = Bitmap.new(width - 32, height - 32)
@level_up_flags = [false, false, false, false]
self.opacity = 140
self.z = 1
self.contents.font.size = 20
refresh
end
#--------------------------------------------------------------------------
# ● 释放
#--------------------------------------------------------------------------
def dispose
super
end
#--------------------------------------------------------------------------
# ● 设置升级标志
# actor_index : 角色索引
#--------------------------------------------------------------------------
def level_up(actor_index)
@level_up_flags[actor_index] = true
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
@item_max = $game_party.actors.size
for i in 0...$game_party.actors.size
actor = $game_party.actors
case i
when 0
testname = "batter"+actor.id.to_s
bitmap=Bitmap.new("Graphics/Heads/#{testname}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(42, 0, bitmap, src_rect)
when 1
testname = "batter"+actor.id.to_s
bitmap=Bitmap.new("Graphics/Heads/#{testname}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(202, 0, bitmap, src_rect)
when 2
testname = "batter"+actor.id.to_s
bitmap=Bitmap.new("Graphics/Heads/#{testname}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(362, 0, bitmap, src_rect)
when 3
testname = "batter"+actor.id.to_s
bitmap=Bitmap.new("Graphics/Heads/#{testname}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(522, 0, bitmap, src_rect)
end
actor_x = i * 160 + 4
draw_actor_name(actor, actor_x, 0)
draw_actor_hp(actor, actor_x, 64, 120)#32
draw_actor_sp(actor, actor_x, 96, 120)#64
if @level_up_flags
self.contents.font.color = normal_color
self.contents.draw_text(actor_x, 32, 120, 32, "等级上升")#96
else
draw_actor_state(actor, actor_x, 32)
end
end
end
#--------------------------------------------------------------------------
# ● 刷新画面
#--------------------------------------------------------------------------
def update
super
# 主界面的不透明度下降
if $game_temp.battle_main_phase
self.contents_opacity -= 4 if self.contents_opacity > 191
else
self.contents_opacity += 4 if self.contents_opacity < 255
end
end
end |
|