godot-particles

Generate and configure GPU particle systems in Godot Engine.

3|Updated Mar 13, 2026
One-click install
npx skills add https://github.com/Totes-MickGOATs/mcgoats-game-template --skill godot-particles-totes-mickgoats
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: godot-particles
Source: https://github.com/Totes-MickGOATs/mcgoats-game-template/tree/main/engine/godot/skills/godot-particles
Command: npx skills add https://github.com/Totes-MickGOATs/mcgoats-game-template --skill godot-particles-totes-mickgoats

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies the creation and management of high-performance GPU-accelerated particle effects in Godot Engine, enabling visually rich VFX without impacting performance.

Core Features & Use Cases

  • GPU Particle Systems: Efficiently create complex visual effects like explosions, magic spells, weather, and trails using GPUParticles2D and GPUParticles3D.
  • Material Configuration: Customize particle appearance, behavior, and emission properties using ParticleProcessMaterial and custom shaders.
  • Use Case: Quickly implement a one-shot explosion effect for a player's death or a continuous rain effect for an environment.

Quick Start

Use the godot-particles skill to create a basic explosion effect with 64 particles, a lifetime of 0.8 seconds, and a spherical emission shape.

Frequently Asked Questions about godot-particles

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create GPU particle effects in Godot without impacting game performance?▼

To create GPU particle effects in Godot without performance drops, use `GPUParticles2D` or `GPUParticles3D` nodes configured with `ParticleProcessMaterial`. This leverages hardware acceleration for VFX like explosions, weather, and trails.

Can I customize particle emission shapes and color gradients in Godot?▼

Yes, you can customize particle emission shapes, color gradients, and behavior in Godot using `ParticleProcessMaterial`. This material allows detailed configuration of visual properties and emission shapes for both 2D and 3D particle systems.

What is the best way to set up a one-shot explosion effect versus continuous weather effects in Godot?▼

The best way to set up a one-shot explosion effect versus continuous weather effects in Godot is by configuring `GPUParticles2D` or `GPUParticles3D` nodes. Adjust emission properties and particle lifetime to toggle between one-shot bursts and continuous emission.

Does this particle generation method support custom shader integration in Godot Engine?▼

Yes, this Godot particle generation method supports custom shader integration. You can apply custom shaders alongside `ParticleProcessMaterial` to achieve unique visual effects and customized particle appearances for your game environments.