EngineItem
EngineItem
provides information of a engine.
Syntax
type EngineItem = {
name: string
version: 10
title: string
subtitle: string
author: string
skin: SkinItem
background: BackgroundItem
effect: EffectItem
particle: ParticleItem
thumbnail: SRL<'EngineThumbnail'>
playData: SRL<'EnginePlayData'>
previewData: SRL<'EnginePreviewData'>
tutorialData: SRL<'EngineTutorialData'>
rom?: SRL<'EngineRom'>
configuration: SRL<'EngineConfiguration'>
}
name
Unique name which identifies the engine.
skin
/ background
/ effect
/ particle
Default items to use with the engine.
Examples
{
"name": "bandori",
"version": 10,
"title": "BanG Dream!",
"subtitle": "BanG Dream! Girls Band Party!",
"author": "Burrito",
"skin": {
// ...
},
"background": {
// ...
},
"effect": {
// ...
},
"particle": {
// ...
},
"thumbnail": {
// ...
},
"playData": {
// ...
},
"previewData": {
// ...
},
"tutorialData": {
// ...
},
"configuration": {
// ...
}
}