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文字以内のものにしてください。

32 行
591B

  1. import {NESPalette} from "/app/js/NESPalette.js";
  2. function initialize(DOC){
  3. var canvas = DOC.getElementById("painter");
  4. if (!canvas){
  5. throw new Error("DOM Missing painter canvas.");
  6. }
  7. var ctx = canvas.getContext("2d");
  8. if (!ctx){
  9. throw new Error("Failed to obtain canvas context.");
  10. }
  11. var nespal = new NESPalette();
  12. nespal.set_palette([
  13. 44,
  14. 11,12,13,
  15. 54,23,43,
  16. 23,18,11,
  17. 4,8,60,
  18. 63,0,11,
  19. 0,15,14,
  20. 9,0,32,
  21. 5,10,20
  22. ]);
  23. console.log(nespal.to_asm());
  24. }
  25. //console.log(document.getElementByID("painter"));
  26. initialize(document);