Unreal Engine Niagara VFX skill for particle simulations, GPU sprites, and procedural visual effects.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill unreal-niagara --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Unreal Niagara?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-unreal-niagara-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: unreal-niagara
description: Unreal Engine Niagara VFX skill for particle simulations, GPU sprites, and procedural visual effects.
allowed-tools: Read, Grep, Write, Bash, Edit, Glob, WebFetch
graph:
domains: [domain:gaming]
specializations: [specialization:game-development]
skillAreas: [skill-area:graphics-rendering, skill-area:shader-programming]
roles: [role:game-developer]
---
# Unreal Niagara Skill
Niagara visual effects system for Unreal Engine.
## Overview
This skill provides capabilities for creating visual effects using Unreal's Niagara system, including particle simulations, GPU particles, and procedural effects.
## Capabilities
### Particle Systems
- Create emitter modules
- Configure spawn, update, render
- Handle particle attributes
- Implement GPU simulation
### Module Development
- Create custom modules
- Implement scratch pad modules
- Handle data interfaces
- Build reusable libraries
### Integration
- Spawn from Blueprints/C++
- Handle events and triggers
- Integrate with gameplay
- Manage performance
### Advanced Features
- Implement mesh particles
- Create ribbon effects
- Handle simulation stages
- Build fluid simulations
## Prerequisites
- Unreal Engine 5.0+
- Niagara plugin enabled
## Usage Patterns
### Spawning Effects
```cpp
// C++ spawn
UNiagaraComponent* NiagaraComp = UNiagaraFunctionLibrary::SpawnSystemAtLocation(
GetWorld(),
ExplosionEffect,
Location,
Rotation
);
// Set parameters
NiagaraComp->SetVariableFloat(FName("Scale"), 2.0f);
```
### Blueprint Integration
```
1. Add Niagara Component
2. Set Niagara System Asset
3. Call Activate/Deactivate
4. Set User Parameters
5. Handle completion events
```
## Best Practices
1. Use GPU simulation for large counts
2. Create module libraries
3. Profile with Niagara debugger
4. Set scalability settings
5. Use LOD for distant effects
## References
- [Niagara Documentation](https://docs.unrealengine.com/5.0/en-US/visual-effects-in-unreal-engine/)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!