赞 | 13 |
VIP | 118 |
好人卡 | 28 |
积分 | 12 |
经验 | 35779 |
最后登录 | 2017-7-6 |
在线时间 | 1564 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1210
- 在线时间
- 1564 小时
- 注册时间
- 2008-7-30
- 帖子
- 4418
|
额,LZ很厉害啊{:nm_3:} 类名首字母必须大写,否则会发生语法错误(SyntaxError)。- $scene.main while $scene != nil
复制代码 而这句话的意思就是如果$scene不为空的话就执行main方法。你就起码要给MyMoudal添加一个main方法。
整个代码也就是这样:- class MyMoudal
- def main
- $scene = Scene_Title.new
- end
- end
复制代码- begin
- Graphics.freeze
- $scene = MyMoudal.new
- $scene.main while $scene != nil
- Graphics.transition(30)
- rescue Errno::ENOENT
- filename = $!.message.sub("No such file or directory - ", "")
- print("Unable to find file #{filename}.")
- end
复制代码 之前水镜先生写了点RGSS2入门教程(由于他是高三学生,所以没写多少{:nm_7:})供你参考一下吧:
http://myyxs.5d6d.com/forum-82-1.html |
|