瀏覽代碼

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

dev-tmpl
Bryan Miller 5 年之前
父節點
當前提交
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…
取消
儲存