소스 검색

Added some test code for EventWindow

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
d595874629
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. +7
    -7
      app/js/main.js

+ 7
- 7
app/js/main.js 파일 보기

@@ -1,3 +1,4 @@
import EventWindow from "/app/js/ui/EventWindow.js";
import {NESPainter} from "/app/js/NESPainter.js";
import {NESPalette} from "/app/js/NESPalette.js";

@@ -11,15 +12,14 @@ function on_palette_changed(e){
}
}

function on_click(e){
console.log(e.target);
}

function initialize(DOC){
EventWindow.listen("onclick", on_click);

var nespainter = new NESPainter(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(nespainter.scale);
nespainter.scale_up(5);

Loading…
취소
저장