Add Export To Sprite

This commit is contained in:
TheBrokenRail 2016-11-29 17:23:28 -05:00 committed by GitHub
parent cac52020a4
commit 0f4e80cbfc

View file

@ -54,4 +54,18 @@ Sprite.prototype.createClone = function () {
return newClone;
};
Sprite.prototype.export = function () {
var result = new Object();
var notSaved = ["clones","runtime"];
for (x in this) {
if (typeof(this[x]) === "function") {
continue;
}
if (notSaved.indexOf(x) == -1) {
result[x] = this[x];
}
}
return result;
};
module.exports = Sprite;