Help this asset pack reach its goal

Raised
$10,057.58
Goal
$9,999.99
100%
of goal
536
contributors
$18.76
average contribution
$100.00
top contribution

A downloadable asset pack

Get this asset pack and 23 more for $35.00 USD
View bundle
Download NowName your own price

Make your weapons pop. These 24 flash effects are perfect for any weapons. Guns, cannons and even tanks.  And they're completely free <3. Made for  Godot 4.x

Included effects

  • 6 Medium flashes using different textures
  • 6 Small flashes with different textures
  • 6 Very small flashes with different textures
  • 6 Big flashes with different textures
  • 12 Textures, All the materials and all the shaders used to make these.

Customizability

All effects come with a tool script that allows you to easily customize the effects to your liking directly in the editor.

  • Easily change the color of effects
  • Adjust the light emitted by the effects
  • Enable and tweak proximity fade
  • Adjust the speed of effects
  • Set one shot and autopla

Levels of Detail

The effects also include the possibility to optimize further by tweaking the levels of detail within them. 

  • Adjust resolution of meshes in an effect.
  • Change how transparency is handled with 3 options
    • Smooth: Smooth edges in effects. Most demanding.
    • Dithered: Dithers the alpha channel. Less demanding, but can be very visible on some effects.
    • Cut: Hard edges. Most performant.


Licensing:

You're free to use this pack for personal, educational and commercial projects with no attribution required (CC0)

Goes Perfectly with this pack:

Binbun Godot Impact VFX

Binbun 3D Godot Fire VFX Effect Kit

Binbun Godot 3D Magic Area VFX Kit

Binbun Godot 3D Magic Orbs VFX Pack

Updated 7 hours ago
StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(2 total ratings)
AuthorBinbun
GenreShooter
Made withGodot
Tags3D, Effects, Explosions, Godot, Movement Shooter, Shaders, Third-Person Shooter, vfx, Weapons
Asset licenseCreative Commons Zero v1.0 Universal

Download

Get this asset pack and 23 more for $35.00 USD
View bundle
Download NowName your own price

Click download now to get access to the following files:

Muzzle Flash VFX 1.7 MB
ExtraTexturesForSupporters 532 kB
if you pay $0.75 USD or more

Development log

Comments

Log in with itch.io to leave a comment.

(1 edit)

These are excellent and super high quality. Thank you for sharing!!! Only problem is that they do not actually work in my game. The preview and one_shot export variables in VFXController get reset to the default at runtime. I was able to fix this by slightly adjusting the code for both variable setters:

@export var preview: bool = true:
    set(value):
        preview = value
        if Engine.is_editor_hint():
            if one_shot && value == true:
                preview = false
                play()
            elif value == true:
                play()
@export var one_shot: bool = false:
    set(value):
        one_shot = value
        if Engine.is_editor_hint():
            preview = false

thank you! I'll include a fix in the next update

Are there any videos or gifs? (Sorry if i’m missing something obvious!)

Some of the images in the sidebar should be working gifs. The inline images within the text should also be gifs but I've been having issues with them not playing on some of my pages.