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.

ctrlpainter_bank.html 996B

1234567891011121314151617181920212223242526
  1. <div class="painter-bank-controls hidden">
  2. <form class="pure-form">
  3. <legend>Bank Tools</legend>
  4. <button class="pure-button" title="Remove Duplicates/Compress" emit="bank_remove_duplicates"><i class="fa fa-eraser"></i></button>
  5. <div class="pure-control-group simple-padding-top">
  6. <label for="mode-select">
  7. Bank Size:
  8. <select id="mode-select" class="painter-bank-mode">
  9. <option value="8K">8K</option>
  10. <option value="4K">4K</option>
  11. <option value="2K">2K</option>
  12. <option value="1K">1K</option>
  13. <option value="2T">Tile (8x16)</option>
  14. <option value="1T">Tile (8x8)</option>
  15. </select>
  16. </label>
  17. </div>
  18. <div class="pure-control-group simple-padding-top painter-bank-offset hidden">
  19. <label for="offset-select">
  20. Offset:
  21. </label>
  22. <input id="offset-select" class="pure-input-1-2" type="number" min="0" max="7" step="1" value="0" />
  23. </div>
  24. </form>
  25. </div>