赞 | 0 |
VIP | 10 |
好人卡 | 25 |
积分 | 1 |
经验 | 13460 |
最后登录 | 2016-3-31 |
在线时间 | 251 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 251 小时
- 注册时间
- 2009-11-13
- 帖子
- 453
|
本帖最后由 hcm 于 2012-8-11 08:30 编辑
我刚学脚本没几天,不要见怪啊。下面是我想到的。
i- f $game_switches[1] == true then
- self.contents = Bitmap.new(" .... ")
- elsif $game_switches[2] == true
- self.contents = Bitmap.new(" .... ")
- elsif $game_switches[3] == true
- self.contents = Bitmap.new(" .... ")
- else
- self.contents = Bitmap.new(1,1)
- end
- 就像这样类似的,在开头刷新那里下面 也就是 def refresh 的下面加上这样一段。
- if self.contents != nil
- self.contents.clear
- self.contents = nil
- end
复制代码 ,不过我觉得这样不太好。
你下个轩辕剑菜单,那个的思路挺不错的。值得学习。
|
评分
-
查看全部评分
|