[RenPy] 纯文本查看 复制代码 screen music_room:
tag menu
add "images/复读机.png"
frame:
has vbox
# 每条音轨的播放按钮。
textbutton "Track 1":
action SetDict(music_dict, "music1", 1), mr.Play("sound/bgm/01 - Bloodstained Ritual of the Night - Theme of Bloodstained.mp3")
textbutton "Track 2":
action SetDict(music_dict, "music2", 1), mr.Play("sound/bgm/02 - Bloodstained Ritual of the Night - Call of Eternity.mp3")
textbutton "Track 3":
action SetDict(music_dict, "music3", 1), mr.Play("sound/bgm/03 - Bloodstained Ritual of the Night - Prologue.mp3")
null height 20
# 切换音轨按钮。
textbutton "下一个" action mr.Next()
textbutton "上一个" action mr.Previous()
null height 20
# 用户退出音乐空间的按钮。
textbutton "Main Menu" action ShowMenu("main_menu")
这是目前的样子
如果根据时间显示歌词不太好搞的话
也可以弄成点击按钮后出现一个大的文本框显示我所需要内容
这种又该怎么实现呢?
不要在意我引用的音乐素材
那就是个凑数的
|