Explosion Set 1 (M484 Games)
Author:
Friday, October 4, 2013 - 01:38
Art Type:
License(s):
Collections:
- !Project::KISS Topdown Shooter
- 2023 jam
- 2D - Effects
- 2D::Animation/Effect
- A Pixel Art Collection
- AstroBlaster
- At the Last Abbey
- awesome 2d shooter
- BOGY FIRE
- BW jam
- C-Dogs SDL art
- CC0 resources
- CC0 Space Shooter
- Cool Stuff for a 2D RPG game
- Dead Galaxies_Scouting
- DOS Ranger
- Explosions, Bullets, Fire etc (Pixel art)
- FlatBoy in ZonderLand - credits
- GAME
- Game Jam Fall 2022 - credits
- Game Jam Fall 2022 - scouting
- Graphic FX
- Gunnface
- HALLOWEEN 2024
- HellStar Assets
- Hexagonal Mech Game
- Infinite Bomber
- JoJo
- LPC Art Collection + Others
- Magical or Elemental Attacks Art Collection
- OGA Jam #2 Assets
- OpenGunner
- Open_Platformers
- PlataGO - SciFi
- PLATAGO! Sir Blastalot Asset Pack
- Possible assets for Princess Fighter
- QnD001 Assets
- QnD002 Assets
- Ramon's Space Shooter Project
- RPG
- shmup
- shmup
- Shmup
- Shmup Art
- shmup resources
- Shooter
- Skymetal Collection
- Space game
- Space invaders
- SpaceGame
- special effect
- Special effects
- Taiketsu art
- The Art of Ascension 2
- Thing game assets?
- VFX
Favorites:
131
Here are some classic 2d explosions in 3 different color themes.
Attribution Instructions:
These graphics are in the Public Domain.
Attribution is not needed.
But if you wish to give me credit, then you can mention "Master484" as the original author, and maybe also put a link to my website: http://m484games.ucoz.com/
File(s):
M484ExplosionSet1.png 30.2 Kb [12166 download(s)]
Comments
Nice! :)
Nice ;)
Perfect for a game of ships or aircraft
Hey dear Master484
I just wanna to say that I used your asset in my free game
and put your name and a link to this page in the Credits.
Thank you!
https://gamejolt.com/games/vaporbreaker/425523
https://retrogemn.itch.io/vaporbreaker
I just used your asset again, but now on my mobile game.
And give you credits in the "About" section.
Thanks!
https://play.google.com/store/apps/details?id=com.Retrogemn.VapobreakerDemo
https://play.google.com/store/apps/details?id=com.retrogemn.vaporbreaker
First of all, thak yu, i very impressed with your work, actually i made GLSL shader with similar result, if anyone interested:
where
float frac: animation 0 -> 1
vec2 xy: UV coordinated (-1,-1) - (1, 1)
vec3 clr: color of the explosion
float l: offset of the "hole" center alon Y axis (for example 0.4)
============================ return color
float k = min(frac*1.5, 1.0);
float r = length(xy);
vec2 pt = vec2(0.0, l*k);
float r1 = distance(xy, pt);
float k1 = clamp((frac - 0.3)*2.0,0.0, 1.5);
k = sqrt(sqrt(k));
float c = frac/r1;
float a = smoothstep(k, k - 0.2, r) * smoothstep(k1 - 0.2, k1, r1);
return vec4(mix(clr.rgb, vec3(1.0, 1.0, 1.0), c), a);
===================
There a result (future browser MMORG, JS + nodeJS):