Project1
标题:
请教如何初始化脚本OTL
[打印本页]
作者:
Koori
时间:
2009-12-23 15:35
提示:
作者被禁止或删除 内容自动屏蔽
作者:
DeathKing
时间:
2009-12-23 22:41
额,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
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1