赞 | 5 |
VIP | 620 |
好人卡 | 38 |
积分 | 69 |
经验 | 125468 |
最后登录 | 2015-7-27 |
在线时间 | 1666 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6865
- 在线时间
- 1666 小时
- 注册时间
- 2008-10-29
- 帖子
- 6710
|
下面是直接重绘窗口内容.不比别的华丽
好处是不会有冲突.
【走投无路】的时候再用吧
4个图片的名字自己改.坐标自己调
放到
@actor_command_window = Window_Command.new
这一行的下面- @actor_command_window.contents.clear
- bitmap = Bitmap.new("Graphics/Pictures/图片1.png")
- rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- @actor_command_window.contents.blt(0, 0, bitmap, rect)
- bitmap = Bitmap.new("Graphics/Pictures/图片2.png")
- rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- @actor_command_window.contents.blt(0, 32, bitmap, rect)
- bitmap = Bitmap.new("Graphics/Pictures/图片3.png")
- rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- @actor_command_window.contents.blt(0, 64, bitmap, rect)
- bitmap = Bitmap.new("Graphics/Pictures/图片4.png")
- rect = Rect.new(0, 0, bitmap.width, bitmap.height)
- @actor_command_window.contents.blt(0, 96, bitmap, rect)
- color = Color.new(255, 255, 255, 255)
- for i in 0..3
- @actor_command_window.draw_item(i, color)
- end
复制代码 |
|