Rizline:AssetList
`Default.asset` is a YAML asset file that contains information about Rizline's songs, illustrations, layouts, and other data.
File Structure
- (root)
MonoBehaviour
(object)- (Unity data: m_*)
levels
(array) - List of all levels.-
(object)
- A level.
id
(string) - Named ID of the level, in the format ofNoSpacesTitle.NoSpacesArtist.0
(for examplePastelLines.RekuMochizuki.0
).musicId
(string) - Named ID of the song, in the format ofNoSpacesTitle.NoSpacesArtist.0
(for examplePastelLines.RekuMochizuki.0
). Usually the same asid
.illustrationId
(string) - Named ID of the song, in the format ofillustration.NoSpacesTitle.NoSpacesArtist.0
(for exampleillustration.PastelLines.RekuMochizuki.0
). Usually the same asid
, but withillustration.
at the beginning.chartIds
(array) - List of charts in the song. Usually, this list has 3 entries.-
(string)
- Named ID of the chart, in the format of
chart.NoSpacesTitle.NoSpacesArtist.0.DIFF
(for examplechart.PastelLines.RekuMochizuki.0.EZ
). Usually the same asid
, but withchart.
at the beginning, and either.EZ
,.HD
,.IN
, or.AT
at the end.
-
(string)
- Named ID of the chart, in the format of
appearType
(int) - Unknown. Always 0. [verify]discName
(string) - Full name of the disc that the level is in. EitherDisc 1
orDisc EX
. [verify]
-
(object)
- A level.
musics
(array) - List of all songs (music).-
(object)
- A song.
id
(string) - Named ID of the song, in the format ofNoSpacesTitle.NoSpacesArtist.0
(for examplePastelLines.RekuMochizuki.0
). Usually the same as a level'sid
field. This field is most likely referenced by the level'smusicId
field.musicName
(string) - Title of the song (for examplePastel Lines
).artist
(string) - Artist of the song (for exampleReku Mochizuki
).previewStartTime
(float) - Beginning time of preview audio, in seconds (for example51.8
).previewOverTime
(float) - End time of preview audio, in seconds (for example71.8
). Usually ispreviewStartTime
+ 20.
-
(object)
- A song.