Last active
August 13, 2017 05:52
-
-
Save dresswithpockets/0d3e6e3c23837e7a62a604531e81d8f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ScreenName": "some screen name", | |
// directory of the assets used | |
// this directory is appended to ./assets/ | |
// so this path would become ./assets/tiles/ | |
"AssetFolder": "tiles/", | |
"Layers": [ | |
{ // layer 0 | |
"Name": "Layer 0", | |
"Rows": [ | |
{ // row 0 | |
"Name": "Row 0", | |
"Tiles": [ | |
{ // tile | |
"Name": "Some Tile", | |
"Asset": "tile1.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "Another Tile", | |
"Asset": "tile2.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "Third Tile", | |
"Asset": "tile3.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
} | |
] | |
}, | |
{ // row 1 | |
"Name": "Row 0", | |
"Tiles": [ | |
{ // tile | |
"Name": "Oh My", | |
"Asset": "tile4.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "Quite", | |
"Asset": "tile5.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "悪い", | |
"Asset": "tile6.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
} | |
] | |
} | |
] | |
}, | |
{ // layer 1 | |
"Name": "Layer 1", | |
"Rows": [ | |
{ // row 0 | |
"Name": "Row 0", | |
"Tiles": [ | |
{ // tile | |
"Name": "わかったる!", | |
"Asset": "tile7.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "・ω・", | |
"Asset": "tile8.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "Some transparent tile", | |
"Asset": "tile9.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 0 // transparent | |
} | |
} | |
] | |
}, | |
{ // row 1 | |
"Name": "Row 0", | |
"Tiles": [ | |
{ // tile | |
"Name": "Another transparent tile", | |
"Asset": "tile10.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 0 // transparent | |
} | |
}, | |
{ // tile | |
"Name": "Superb", | |
"Asset": "tile11.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 255 | |
} | |
}, | |
{ // tile | |
"Name": "the FINAL frontier", | |
"Asset": "tile12.png", | |
"Color": { | |
"R": 255, | |
"G": 255, | |
"B": 255, | |
"A": 0 // transparent | |
} | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment