A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 5 ans
il y a 5 ans
il y a 5 ans
12345678910111213141516
  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="list-container">
  10. <% if(item.hasOwnProperty("tmpl")){ %>
  11. <%- include(item.tmpl) %>
  12. <% } %>
  13. </div>
  14. </div>
  15. <% }); %>
  16. </div>