A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.js 354B

il y a 6 ans
il y a 6 ans
il y a 6 ans
il y a 6 ans
1234567891011121314151617
  1. function initialize(DOC){
  2. console.log(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. }
  12. //console.log(document.getElementByID("painter"));
  13. initialize(document);