Tidying up the repo and adding in new documentation.
|
After Width: | Height: | Size: 6.9 MiB |
|
After Width: | Height: | Size: 2.9 MiB |
|
After Width: | Height: | Size: 493 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 809 B |
|
After Width: | Height: | Size: 522 B |
|
After Width: | Height: | Size: 764 B |
|
After Width: | Height: | Size: 322 B |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 612 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 161 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 335 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 210 KiB |
|
After Width: | Height: | Size: 1021 KiB |
|
After Width: | Height: | Size: 1010 KiB |
|
After Width: | Height: | Size: 1022 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 9.2 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,40 @@
|
||||
{
|
||||
|
||||
"frames":
|
||||
[
|
||||
{% for sprite in spritesAndAliases %}{% if currentLoop.currentIndex > 0 %},{% /if %}
|
||||
{
|
||||
"filename": "{{ sprite.name }}",
|
||||
"frame": {"x":{{ sprite.textureRectX }},"y":{{ sprite.textureRectY }},"w":{{ sprite.textureRectWidth }},"h":{{ sprite.textureRectHeight }}},
|
||||
"rotated": {% if sprite.isRotated %}true{% else %}false{% /if %},
|
||||
"trimmed": {% if sprite.isTrimmed %}true{% else %}false{% /if %},
|
||||
"spriteSourceSize": {"x":0,"y":0,"w":{{ sprite.sourceSizeWidth }},"h":{{ sprite.sourceSizeHeight }}},
|
||||
"sourceSize": {"w":{{ sprite.sourceSizeWidth }},"h":{{ sprite.sourceSizeHeight }}},
|
||||
"spriteColorRect": {"x":{{ sprite.sourceColorRectX }},"y":{{ sprite.sourceColorRectY }},"w":{{ sprite.sourceColorRectWidth }},"h":{{ sprite.sourceColorRectHeight }}},
|
||||
"spriteOffset": {"x":{{ sprite.offsetX }}, "y":{{ sprite.offsetY }}},
|
||||
"spriteSize": {"w":{{ sprite.sizeWidth }}, "h":{{ sprite.sizeHeight }}}
|
||||
}{% /for %}
|
||||
],
|
||||
|
||||
"meta":
|
||||
{
|
||||
|
||||
"app": "http://zwoptexapp.com",
|
||||
"version": "{{ metadata.version }}",
|
||||
"image": "{{ metadata.target.textureFileName }}{{ metadata.target.textureFileExtension }}",
|
||||
"size": {"w":{{ metadata.sizeWidth }},"h":{{ metadata.sizeHeight }}},
|
||||
"name": "{{ metadata.name }}",
|
||||
"premultipliedAlpha": {% if metadata.premultipliedAlpha %}true{% else %}false{% /if %},
|
||||
"target": {
|
||||
"name": "{{ metadata.target.name }}",
|
||||
"textureFileName": "{{ metadata.target.textureFileName }}",
|
||||
"textureFileExtension": "{{ metadata.target.textureFileExtension }}",
|
||||
"coordinatesFileName": "{{ metadata.target.coordinatesFileName }}",
|
||||
"coordinatesFileExtension": "{{ metadata.target.coordinatesFileExtension }}",
|
||||
"premultipliedAlpha": {% if metadata.target.premultipliedAlpha %}true{% else %}false{% /if %}
|
||||
},
|
||||
"scale": "1"
|
||||
|
||||
}
|
||||
|
||||
}
|
||||