소스 검색

NESTile .copy() will copy the data from a given NESTile to the current one.

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
8d57f47874
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      app/js/models/NESTile.js

+ 10
- 0
app/js/models/NESTile.js 파일 보기

@@ -84,6 +84,10 @@ export default class NESTile{
return d;
}

get chr(){
return new Uint8Array(this.__data);
}

get base64(){
var b = ""
for (var i = 0; i < this.__data.length; i++) {
@@ -162,6 +166,12 @@ export default class NESTile{
return t;
}

copy(t){
if (!(t instanceof NESTile))
throw new TypeError("Expected NESTile object.");
this.__data.set(t.__data);
}

isEq(tile){
if (!(tile instanceof NESTile)){
throw new TypeError("Expected NESTile instance.");

Loading…
취소
저장