A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
-
-
- function initialize(DOC){
- console.log(DOC);
- var canvas = DOC.getElementById("painter");
- if (!canvas){
- throw new Error("DOM Missing painter canvas.");
- }
- var ctx = canvas.getContext("2d");
- if (!ctx){
- throw new Error("Failed to obtain canvas context.");
- }
- }
-
-
- //console.log(document.getElementByID("painter"));
- initialize(document);
|