====================================================================================
先写个最基本的
class ST
def main
@gd = Window_Gold.new #这里写你要调用的窗口
Graphics.transition
loop do
Graphics.update
Input.update
update
if $scene != self
break
end
end
Graphics.freeze
@gd.dispose
end
def update
@gd.update
if Input.trigger?(Input::B)
$scene = Scene_Map.new
end
end
end 作者: 紫苏 时间: 2009-6-11 06:50
因为你没有用变量引用这个窗口对象,所以它被垃圾回收器回收了