Przeglądaj źródła

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

dev-tmpl
Bryan Miller 5 lat temu
rodzic
commit
8d57f47874
1 zmienionych plików z 10 dodań i 0 usunięć
  1. +10
    -0
      app/js/models/NESTile.js

+ 10
- 0
app/js/models/NESTile.js Wyświetl plik

@@ -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.");

Ładowanie…
Anuluj
Zapisz