From 6f1973be3c0ddfaa7e237a6a83fc2c3c0cc5537b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 10 Feb 2021 21:20:00 -0500 Subject: [PATCH] Fix --- commands/edit-avatar/eject.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/edit-avatar/eject.js b/commands/edit-avatar/eject.js index ab8f1da3..25d70dfb 100644 --- a/commands/edit-avatar/eject.js +++ b/commands/edit-avatar/eject.js @@ -77,11 +77,12 @@ module.exports = class EjectCommand extends Command { const frameID = `frame_${i.toString().padStart(2, '0')}.gif`; const frame = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'eject', frameID)); if (i <= 11) { - const x = (320 / 10) * i; const rotation = (360 / 10) * i; + const x = ((320 / 10) * i) - (rotation / 2); + const y = ((frame.height / 2) - 25) + (rotation / 2) ctx.drawImage(frame, 0, 0); ctx.rotate(rotation * (Math.PI / 180)); - ctx.drawImage(avatar, x, (frame.height / 2) - 25, 50, 50); + ctx.drawImage(avatar, x, y, 50, 50); ctx.rotate(-rotation * (Math.PI / 180)); } if (i > 10) {