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