jackkerouac / animated-spell-effects

A small, but growing collection of animated spells for use with various VTT's in the top-down/overhead perspective. All files are in transparent webm format. Files will be located in your "Data\modules\animated-spell-effects\spell-effects" folder. If you like my work, consider saying thanks on Discord: jackkerouac#0624.
GNU General Public License v3.0
30 stars 14 forks source link

magic_shockwave_CIRCLE_01.webm doesn't have transparent background #13

Closed Nehon closed 3 years ago

Nehon commented 3 years ago

Hello, for some reason, this spell effect "spell-effects/magic/magic_shockwave_CIRCLE_01.webm" doesnt blend with the background and shows a black bakground. I play it through fx-master macro

const data = {
  file: "modules/animated-spell-effects/spell-effects/magic/magic_shockwave_CIRCLE_01.webm",
  position: {
    x: player.data.x+35,
    y: player.data.y+35
  },
  anchor: {
   x: 0.5,
   y: 0.5
  },
  angle: 0,
  scale: {
    x: 5/3,
    y: 5/3
  }
}
canvas.fxmaster.playVideo(data);
game.socket.emit('fxmaster', data);

I tried with many others and they don't have this issue. And... of course I want this one. Is there something special to do? thanks