赞 | 0 |
VIP | 15 |
好人卡 | 21 |
积分 | 7 |
经验 | 24727 |
最后登录 | 2021-10-29 |
在线时间 | 2184 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 672
- 在线时间
- 2184 小时
- 注册时间
- 2009-12-6
- 帖子
- 607
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 ML4455739 于 2010-12-26 01:03 编辑
RT,我弄了个窗口:- class WW_Window < Window_Base
- def initialize
- super(180, 0, 460, 480) # 定义窗口的显示位置和高、宽
- self.contents = Bitmap.new(width-32, height-32)
- self.contents.font.name = "黑体"
- refresh
- end
- def refresh
- if $w == 1
- text = "文字1"
- self.contents.font.color = Color.new(255, 0, 0, 255) #Red
- self.contents.draw_text(4, 0, 406, 32, text)
- end
- if $w == 2
- text = "文字2"
- self.contents.font.color = Color.new(255, 0, 0, 255) #Red
- self.contents.draw_text(4, 0, 406, 32, text)
- end
- end
- end
- def update
- $WW_window.updata
- Graphics.update
- if Graphics.frame_count / Graphics.frame_rate != @total_sec
- refresh
- end
- end
复制代码 当要显示文字2的时候,怎么才能让文字1不留在上面? |
|