A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"); %>