26 lines
No EOL
505 B
JavaScript
26 lines
No EOL
505 B
JavaScript
function LevelImage(img) {
|
|
this.drawover = true;
|
|
this.image = new Image();
|
|
this.loaded = false;
|
|
this.image.addEventListener("load", function() {
|
|
this.loaded = true;
|
|
}, false);
|
|
}
|
|
|
|
/**
|
|
* Changes the object's image
|
|
@ 0:img (string) Path to image
|
|
# (void)
|
|
*/
|
|
LevelImage.prototype.setImage(img) {
|
|
this.loaded = false;
|
|
this.image.src = "./assets/images/" + img;
|
|
}
|
|
|
|
/**
|
|
* Returns the image object's src
|
|
# (string) image object's src
|
|
*/
|
|
LevelImage.prototype.getImage() {
|
|
return this.image.src;
|
|
} |