A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
12345678910111213141516171819202122232425262728
  1. <div class="tabnav">
  2. <ul tabs="<%= tabsetname %>">
  3. <% tabs.forEach(function(item){ %>
  4. <li tabid="<%= item.id %>"><a href="#"><%= item.name %></a></li>
  5. <% }); %>
  6. </ul>
  7. <% tabs.forEach(function(item){ %>
  8. <div class="tab-content" fortabs="<%= tabsetname %>" tabid="<%= item.id %>">
  9. <div class="simple-padding">
  10. <% if (item.hasOwnProperty("addevent")){ %>
  11. <button class="pure-button" emit="modal-open" emit-args='{"id":"<%= item.addevent %>"}'>
  12. <i class="fa fa-plus-circle"></i>
  13. </button>
  14. <% } %>
  15. <% if (item.hasOwnProperty("remevent")){ %>
  16. <button class="pure-button" emit="<%= item.remevent %>">
  17. <i class="fa fa-trash-alt"></i>
  18. </button>
  19. <% } %>
  20. </div>
  21. <div class="list-container">
  22. <% if(item.hasOwnProperty("tmpl")){ %>
  23. <%- include(item.tmpl) %>
  24. <% } %>
  25. </div>
  26. </div>
  27. <% }); %>
  28. </div>