Agent skill
unreal-niagara
Unreal Engine Niagara VFX skill for particle simulations, GPU sprites, and procedural visual effects.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/unreal-niagara
SKILL.md
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
// 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
- Use GPU simulation for large counts
- Create module libraries
- Profile with Niagara debugger
- Set scalability settings
- Use LOD for distant effects
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?