demo: Update swfs.json example

This commit is contained in:
nosamu 2022-07-12 13:20:37 -05:00 committed by Mike Welsh
parent 320f84dc88
commit 7c55a14c36
1 changed files with 71 additions and 37 deletions

View File

@ -29,43 +29,77 @@ To use this, add a new file `swfs.json` in this directory. The contents should l
```json ```json
{ {
"swfs": [ "swfs": [
{ {
"location": "swfs/alien_hominid.swf", "location": "logo-anim.swf",
"title": "Alien Hominid", "title": "Ruffle Logo",
"author": "Tom Fulp and Dan Paladin", "author": "Ruffle contributors",
"authorLink": "https://www.newgrounds.com", "authorLink": "https://ruffle.rs",
"type": "Game" "config": {
}, "autoplay": "on",
{ "backgroundColor": "#31497D",
"location": "swfs/saturday_morning_watchmen.swf", "letterbox": "off",
"title": "Saturday Morning Watchmen", "unmuteOverlay": "hidden"
"author": "Harry Partridge", }
"authorLink": "https://twitter.com/HappyHarryToons", },
"type": "Animation" {
}, "location": "swfs/bitey1.swf",
{ "title": "Bitey of Brackenwood",
"location": "swfs/synj1.swf", "author": "Adam Phillips",
"title": "Synj vs. Horrid Part 1", "authorLink": "https://bitey.com",
"author": "Dan Paladin", "type": "Animation"
"authorLink": "https://www.thebehemoth.com", },
"type": "Animation" {
}, "location": "swfs/saturday_morning_watchmen.swf",
{ "title": "Saturday Morning Watchmen",
"location": "swfs/synj2.swf", "author": "Harry Partridge",
"title": "Synj vs. Horrid Part 2", "authorLink": "https://twitter.com/HappyHarryToons",
"author": "Dan Paladin", "type": "Animation"
"authorLink": "https://www.thebehemoth.com", },
"type": "Animation" {
}, "location": "swfs/synj1.swf",
{ "title": "Synj vs. Horrid Part 1",
"location": "swfs/wasted_sky.swf", "author": "Dan Paladin",
"title": "Wasted Sky", "authorLink": "https://www.thebehemoth.com",
"author": "Tom Fulp", "type": "Animation"
"authorLink": "https://www.newgrounds.com", },
"type": "Game" {
} "location": "swfs/synj2.swf",
] "title": "Synj vs. Horrid Part 2",
"author": "Dan Paladin",
"authorLink": "https://www.thebehemoth.com",
"type": "Animation"
},
{
"location": "swfs/alien_hominid.swf",
"title": "Alien Hominid",
"author": "Tom Fulp and Dan Paladin",
"authorLink": "https://www.newgrounds.com",
"type": "Game"
},
{
"location": "swfs/flyguy.swf",
"title": "FlyGuy",
"author": "Trevor van Meter",
"authorLink": "https://www.heytvm.com",
"type": "Game"
},
{
"location": "swfs/marvin_spectrum.swf",
"title": "Marvin Spectrum",
"author": "Bryan Singh",
"authorLink": "https://www.hotbryan.com",
"type": "Game"
},
{
"location": "swfs/wasted_sky.swf",
"title": "Wasted Sky",
"author": "Tom Fulp",
"authorLink": "https://www.newgrounds.com",
"type": "Game"
}
]
} }
``` ```