赞 | 0 |
VIP | 1 |
好人卡 | 0 |
积分 | 1 |
经验 | 28272 |
最后登录 | 2022-12-22 |
在线时间 | 436 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 68
- 在线时间
- 436 小时
- 注册时间
- 2010-7-19
- 帖子
- 414
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 zhouzhuofan1 于 2013-10-20 17:43 编辑
我想将游戏分为两个模式,一是游戏默认的回合制战斗,二是战场模式
而我想将两个模式的菜单分开。。。
在默认模式下,按X键调用原来的菜单;
在战场模式下,按住X键调用的则是另一个菜单,游戏仍在进行,
松开X键则菜单消失。
以下是战场模式的菜单:- class Window_zczt < Window_Base
- def initialize
- super(0,0,640,200)
- self.contents = Bitmap.new(width-32,height-32)
- self.contents.font.color = Color.new(105,255,150)
- self.opacity=64
- self.back_opacity=155
- refresh
- end
- def refresh
- self.contents.clear
- bitmap = Bitmap.new('Graphics/Faces/阿尔西斯头像.png')
- rect = Rect.new(0,0,bitmap.width,bitmap.height)
- self.contents.blt(6,13,bitmap,rect)
- w = 22
- h = 22
- self.contents.font.color = Color.new(235,5,4)
- self.contents.draw_text(143,31,w,h,'HP')
- bitmap = Bitmap.new('Graphics/Faces/塞尔维亚头像.png')
- rect = Rect.new(0,0,bitmap.width,bitmap.height)
- self.contents.blt(341,25,bitmap,rect)
- self.contents.draw_text(486,37,w,h,'HP')
- w = 275
- self.contents.font.color = Color.new(254,255,255)
- self.contents.draw_text(180,33,w,h,$game_variables[100].to_s)
- w = 286
- self.contents.draw_text(523,39,w,h,$game_variables[55].to_s)
- end
- end
复制代码 |
评分
-
查看全部评分
|