|
发表于 2010-1-27 13:09:56
|
显示全部楼层
s1 = Vocab::new_game
s2 = Vocab::continue
s3 = Vocab::shutdown
@command_window = Window_Command.new(172, [s1, s2, s3])
这是scene_Title中的
比如 你要加一个 "CG"你只要
s1 = Vocab::new_game
s2 = Vocab::continue
s3 = Vocab::shutdown
s4 = "CG"
@command_window = Window_Command.new(172, [s1, s2, s3,s4])
就可以了 |
|