加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
def backg actor=@actor actor_bg(actor.name) end def actor_bg(file_name) bitmap = Cache.picture("Statesbg/#{file_name}") src_rect = Rect.new(0,0,bitmap.width ,bitmap.height) contents.blt(0, 0, bitmap, src_rect) [color=Red] bitmap.dispose[/color] end
def backg
actor=@actor
actor_bg(actor.name)
end
def actor_bg(file_name)
bitmap = Cache.picture("Statesbg/#{file_name}")
src_rect = Rect.new(0,0,bitmap.width ,bitmap.height)
contents.blt(0, 0, bitmap, src_rect)
[color=Red] bitmap.dispose[/color]
end
1、如上,菜单中的“状态”栏下,当我切换角色(使用Q/W键)红字部分的语句是否已经使位图释放?如何验证?(以上使用效果正常)
2、不透明度方法bitmap.opacity=40无法生效的问题求指导,报错——没有opacity的属性,如此应该怎么控制bitmap的不透明度? |