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ů.

27 lines
996B

  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>