I have sprites with two frames in a container. I need to reset all of them back to frame 1.
I’ve tried these two methods be neither work. How should this be done?
_this.letterset.setAll(‘frame’, 0);
_this.letterset.children.each(function(let) {
let.setFrame(0);
}, this);