A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ctrlpainter_bank.html 703B

12345678910111213141516171819
  1. <div class="painter-bank-controls hidden">
  2. <button class="pure-button" emit="bank_remove_duplicates"><i class="fa fa-eraser"></i></button>
  3. <label for="mode-select">
  4. Bank Size:
  5. <select id="mode-select" class="painter-bank-mode">
  6. <option value="8K">8K</option>
  7. <option value="4K">4K</option>
  8. <option value="2K">2K</option>
  9. <option value="1K">1K</option>
  10. <option value="2T">Tile (8x16)</option>
  11. <option value="1T">Tile (8x8)</option>
  12. </select>
  13. </label>
  14. <label for="offset-select" class="painter-bank-offset hidden">
  15. Offset:
  16. <input id="offset-select" class="input-u-1-6" type="number" min="0" max="7" step="1" value="0" />
  17. </label>
  18. </div>