mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 00:34:40 +00:00
46 lines
970 B
Haxe
46 lines
970 B
Haxe
package funkin.data.freeplay;
|
|
|
|
import funkin.data.animation.AnimationData;
|
|
|
|
/**
|
|
* A type definition for the data for an album of songs.
|
|
* It includes things like what graphics to display in Freeplay.
|
|
* @see https://lib.haxe.org/p/json2object/
|
|
*/
|
|
typedef AlbumData =
|
|
{
|
|
/**
|
|
* Semantic version for album data.
|
|
*/
|
|
public var version:String;
|
|
|
|
/**
|
|
* Readable name of the album.
|
|
*/
|
|
public var name:String;
|
|
|
|
/**
|
|
* Readable name of the artist(s) of the album.
|
|
*/
|
|
public var artists:Array<String>;
|
|
|
|
/**
|
|
* Asset key for the album art.
|
|
* The album art will be displayed in Freeplay.
|
|
*/
|
|
public var albumArtAsset:String;
|
|
|
|
/**
|
|
* Asset key for the album title.
|
|
* The album title will be displayed below the album art in Freeplay.
|
|
*/
|
|
public var albumTitleAsset:String;
|
|
|
|
/**
|
|
* An optional array of animations for the album title.
|
|
*/
|
|
@:optional
|
|
@:default([])
|
|
public var albumTitleAnimations:Array<AnimationData>;
|
|
}
|