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.

modal.html 541B

12345678910111213141516171819
  1. <div id="Welcome" class="modal">
  2. <div class="modal-content">
  3. Welcome to the modal!
  4. </div>
  5. </div>
  6. <%- include("modals/storeadd.html", {stores:[
  7. {"modalclass":"palettes-store-add", "title":"New Palette Name", "addevent":"palstore-add"},
  8. {"modalclass":"banks-store-add", "title":"New Bank Name", "addevent":"bankstore-add"}
  9. ]}); %>
  10. <div id="LoadProject" class="modal">
  11. <div class="modal-content">
  12. <input type="file" accept="text/plain" name="loadProject"></input>
  13. </div>
  14. </div>
  15. <%- include("modals/export_CHR.html"); %>