I have an object
var nark = add([ sprite("spr_1") ]);
How might I change the sprite to something different programatically? Ive tried both of these, but to no avail:
nark.sprite = sprite("spr_2"); nark.sprite = "spr_2";
have you tried: nark.changeSprite('spr_2')
nark.changeSprite('spr_2')
Changing the sprite of an object in kaboom.js
I have an object
How might I change the sprite to something different programatically? Ive tried both of these, but to no avail:
have you tried:
nark.changeSprite('spr_2')