Project1
标题: 战斗中显示任务头像的脚本没有效果? [打印本页]
作者: daxuexinsheng 时间: 2012-6-16 15:25
标题: 战斗中显示任务头像的脚本没有效果?
不知道是什么原因,战斗中在角色的HP、SP旁边显示任务头像的脚本没有效果(什么也没有显示)啊?(已经创建了对应的文件夹,放入了脚本定义的名称的图片)- class Window_Base < Window
- def draw_actor_face(actor, x, y)
- $face1 = "Graphics/Characters/"
- $face2 = "Faces/"
- test = actor.name + "_f"
- bitmap = Bitmap.new($face1+$face2+ "#{test}.png")
- cw = bitmap.width
- ch = bitmap.height
- src_rect = Rect.new(0, 0, cw, ch)
- self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
- end
- end
复制代码