What problem does it solve?
This Skill empowers developers to control Unreal Engine's powerful Niagara particle effects system directly from C++ code, enabling dynamic and responsive visual effects in games and simulations.
Core Features & Use Cases
- Spawn & Control Effects: Spawn one-shot or persistent Niagara systems at specific locations or attached to components.
- Parameter Manipulation: Dynamically set particle system parameters (scalars, vectors, colors, etc.) from C++ at runtime.
- Data Interface Binding: Connect C++ data sources (like skeletal meshes, static meshes, or custom arrays) to Niagara Data Interfaces for advanced effects.
- Lifecycle Management: Control activation, deactivation, pausing, and completion callbacks for effects.
- Performance Optimization: Utilize pooling and understand scalability settings for efficient VFX.
- Use Case: Create a C++ function that spawns an explosion effect at a projectile's impact location, dynamically setting the impact color and intensity based on the damage dealt.
Quick Start
Use the ue-niagara-effects skill to spawn a system at location with the asset 'FX/VFX_Explosion.uasset' at the actor's current location.