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.

26 satır
777B

  1. <div id="Welcome" class="modal">
  2. <div class="modal-content">
  3. Welcome to the modal!
  4. </div>
  5. </div>
  6. <div id="PaletteAdd" class="modal">
  7. <div class="modal-content">
  8. <label for="palname">
  9. New Palette Name:
  10. </label>
  11. <input type="text" name="palname" />
  12. <button class="pure-button" emit="modal-submit" emit-args='{"subevent":"palstore-add", "ids":"palname", "closeoncomplete":true}'>Submit</button>
  13. </div>
  14. </div>
  15. <div id="BankAdd" class="modal">
  16. <div class="modal-content">
  17. <label for="bankname">
  18. New Bank Name:
  19. </label>
  20. <input type="text" name="bankname" />
  21. <button class="pure-button" emit="modal-submit" emit-args='{"subevent":"bankstore-add", "ids":"bankname", "closeoncomplete":true}'>Submit</button>
  22. </div>
  23. </div>