Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- images.xml:
- <!-- (In fact the root tag name doesn't matter, there just needs to be one) -->
- <images>
- <!-- "name" is the filename without an extension -->
- <image name="filename">
- <!-- Full name of the character, defaults to name -->
- <fullname>Full Character Name</fullname>
- <!-- A link to a source, openable from the image name on the UI -->
- <source>http://a-link-to-source.com</source>
- <!-- Control the smart alignment of the image, defaults to "center" -->
- <align>left|center|right</align>
- <!-- For animations only. -->
- <!-- Animations consist of several images named as "[name]_[number]" -->
- <!-- A list of millisecond delays for each frame of the animation, separated by "," -->
- <!-- If the list is too short, it is extended by copying the last item in it -->
- <frameDuration>33</frameDuration>
- </image>
- </images>
- Animation example:
- ├── images.xml
- └── Lain
- ├── Lain_01.png
- ├── Lain_02.png
- ├── ...
- ├── Lain_17.png
- └── Lain_18.png
- The order of the files in the zipped zip matters. 7zip orders the files alphabetically, but
- the linux command "zip" does not. This can lead to out of order frames, since the respack parsing
- is overall a bit wonky (it was made to just work, then it did and was left to be).
- images.xml
- <image name="Lain">
- <fullname>Lain</fullname>
- <align>left</align>
- <!-- 83ms works out to 12 frames per second -->
- <frameDuration>83</frameDuration>
- </image>
- songs.xml:
- <songs>
- <!-- "name" is the filename without an extension (the file needs to be an .mp3) -->
- <song name="filename">
- <!-- Title of the song -->
- <title>Song Title</title>
- <!-- The beatmap aka beatstring aka rhythm of the loop -->
- <rhythm>x...o...</rhythm>
- <!-- A link to a source, openable from the song name on the UI -->
- <source>http://a-link-to-source.com</source>
- <!-- The filename without an extension of the buildup for this loop -->
- <buildup>buildupName</buildup>
- <!-- The beatmap for the buildup -->
- <buildupRhythm>x...o...</buildupRhythm>
- </song>
- </songs>
- info.xml:
- <info>
- <name>Respack Name</name>
- <author>Author Name</author>
- <description>A nice description of the respack</description>
- <!-- The link tag is optional, and is openable by clicking the author name on the RESOURCES tab -->
- <link>http://0x40hues.blogspot.com</link>
- </info>
Advertisement
Add Comment
Please, Sign In to add comment