Resize animated sprites?

Is it possible to resize animated sprites. I load it in using this.load.spritesheet (‘player’, ‘assets/player’, {framewidth: 20 , frameHeight:20 }) . Is there somewhere in there than i can resize it ?

sprite.setScale(.9);

1 Like

You resize the game object, e.g.,

const player = this.add.sprite(0, 0, 'player').setScale(0.9);