A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

index.html 516B

123456789101112131415161718192021
  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('surface.html'); %>
  14. </div>
  15. </div>
  16. <%- include('tail.html'); %>