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

17 行
334B

  1. function initialize(DOC){
  2. var canvas = DOC.getElementById("painter");
  3. if (!canvas){
  4. throw new Error("DOM Missing painter canvas.");
  5. }
  6. var ctx = canvas.getContext("2d");
  7. if (!ctx){
  8. throw new Error("Failed to obtain canvas context.");
  9. }
  10. }
  11. //console.log(document.getElementByID("painter"));
  12. initialize(document);