A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

33 lines
933B

  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>
  24. <div id="LoadProject" class="modal">
  25. <div class="modal-content">
  26. <input type="file" accept="text/plain" name="loadProject"></input>
  27. </div>
  28. </div>