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.

index.html 590B

1234567891011121314151617181920212223
  1. <%- include('head.html'); %>
  2. <%- include('modal.html'); %>
  3. <%- include('header.html'); %>
  4. <div class="content-wrapper">
  5. <div class="pure-g">
  6. <%- include('tools.html', {
  7. toolbtns:[
  8. {emitargs:'{"id":"Welcome"}', faicon:"fa-brush"},
  9. {emitargs:'{"id":"Welcome"}', faicon:"fa-eraser"},
  10. {emitargs:'{"id":"Welcome"}', faicon:"fa-eye-dropper"}
  11. ]
  12. }); %>
  13. <%- include('workspace.html'); %>
  14. </div>
  15. <%- include('footer.html', {version:version, author:author}); %>
  16. </div>
  17. <%- include('tail.html'); %>