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 символов.

18 lines
364B

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