赞 | 3 |
VIP | 0 |
好人卡 | 3 |
积分 | 5 |
经验 | 3970 |
最后登录 | 2017-11-24 |
在线时间 | 159 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 470
- 在线时间
- 159 小时
- 注册时间
- 2013-11-2
- 帖子
- 205
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 飞翔的小鸟3 于 2017-9-21 20:37 编辑
贴个脚本
用红色标出我写的,就不贴脚本框了
class Window_TitleCommand < Window_Command
#--------------------------------------------------------------------------
# ● 初始化对象
#--------------------------------------------------------------------------
def initialize
super(0, 0)
update_placement
select_symbol(:continue) if continue_enabled
self.openness = 0
open
muisc_handler
end
#--------------------------------------------------------------------------
# ● 获取窗口的宽度
#--------------------------------------------------------------------------
def window_width
return 160
end
#--------------------------------------------------------------------------
# ● 更新窗口的位置
#--------------------------------------------------------------------------
def update_placement
self.x = (Graphics.width - width) / 2
self.y = (Graphics.height * 1.6 - height) / 2
end
#--------------------------------------------------------------------------
# ● 生成指令列表
#--------------------------------------------------------------------------
def make_command_list
add_command(Vocab::new_game, :new_game)
add_command(Vocab::continue, :continue, continue_enabled)
add_command(Vocab::shutdown, :shutdown)
end
#--------------------------------------------------------------------------
# ● 获取“继续游戏”选项是否有效
#--------------------------------------------------------------------------
def continue_enabled
DataManager.save_file_exists?
end
#自制
def make_command_list
add_command(Vocab::new_game, :new_game)
add_command(Vocab::continue, :continue, continue_enabled)
add_command("音乐盒", :music)
add_command(Vocab::shutdown, :shutdown)
end
def music
Audio.bgm_play("Audio/BGM/自制.mp3")
end
def muisc_handler
set_handler(:music, method(:music))
end
end
音乐播放了,但是卡死
|
|