You've already forked factorio-blueprint-editor
mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2025-11-23 22:15:01 +02:00
12 lines
412 B
Smarty
12 lines
412 B
Smarty
{
|
|
"frames": {
|
|
<% layout.images.forEach(function (image, idx)
|
|
{ %>"<%= image.className %>": {
|
|
"frame": { "x": <%= image.x %>, "y": <%= image.y %>, "w": <%= image.width %>, "h": <%= image.height %> },
|
|
"sourceSize": { "w": <%= image.width %>, "h": <%= image.height %> }
|
|
}<% if (idx !== layout.images.length - 1) { %>,<% } %>
|
|
<% }); %>
|
|
},
|
|
"meta": { "image": "entitySprites.png" }
|
|
}
|