赞 | 0 |
VIP | 0 |
好人卡 | 1 |
积分 | 128 |
经验 | 86993 |
最后登录 | 2024-11-22 |
在线时间 | 1458 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12835
- 在线时间
- 1458 小时
- 注册时间
- 2012-7-24
- 帖子
- 1302
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
如题,新手一个啊,不会弄这种东西,折腾几下就头爆掉了,想不出为什么…………我是在Window_MenuStatus这个脚本加个图片进去的,被我改成了这样:- #==============================================================================
- # ■ Window_MenuStatus
- #------------------------------------------------------------------------------
- # 显示菜单画面和同伴状态的窗口。
- #==============================================================================
- class Window_MenuStatus < Window_Selectable
- #--------------------------------------------------------------------------
- # ● 初始化目标
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 640, 480)
- self.contents = Bitmap.new(width, height)
- refresh
- self.active = false
- self.index = -1
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- =begin
- @item_max = $game_party.actors.size
- for i in 0...$game_party.actors.size
- x = 64
- y = i * 116
- actor = $game_party.actors[i]
- draw_actor_graphic(actor, x - 40, y + 80)
- draw_actor_name(actor, x, y)
- draw_actor_class(actor, x + 144, y)
- draw_actor_level(actor, x, y + 32)
- draw_actor_state(actor, x + 90, y + 32)
- draw_actor_exp(actor, x, y + 64)
- draw_actor_hp(actor, x + 236, y + 32)
- draw_actor_sp(actor, x + 236, y + 64)
- end
- =end
- bitmap = Bitmap.new("Graphics/Titles/001-Title01.jpg")
- src_rect = Rect.new(0, 0, 640, 480)
- self.contents.blt(0, 0, bitmap, src_rect)
- end
- #--------------------------------------------------------------------------
- # ● 刷新光标矩形
- #--------------------------------------------------------------------------
- def update_cursor_rect
- if [url=home.php?mod=space&uid=370741]@Index[/url] < 0
- self.cursor_rect.empty
- else
- self.cursor_rect.set(0, @index * 116, self.width - 32, 96)
- end
- end
- end
复制代码 可是不知道为什么,图片老是显示不全,明明都是640*480的嘛……
这是默认素材里的图片,是640*480的,求教各位大大!!~~ |
|