Knowledge base
Knowledge base
Knowledge base
Free, anonymous browsing of Unreal Engine Blueprint examples, node references, and best practices. The same content the WoalzCraft plugin uses to generate Blueprints.
20 results for niagara
Pattern: LineTraceByChannel → Branch(hit=true) → BreakHitResult → SpawnSystemAtLocation(SystemTemplate=NS_Impact, Location=ImpactPoint, Rotation=MakeRotFromX(ImpactNormal), Scale=(1,1,1), bAutoDestroy=true). Use MakeRotFromX with ImpactNormal to orient effect to surface normal. NS_ prefix is convention for Niagara Systems. SpawnSystemAtLocation is in UNiagaraFunctionLibrary. bAutoDestroy=true means the component cleans itself up after the effect completes.
Why: Your spawn-system node points at the Niagara asset '{sys}' which no longer exists in the project. Fix: In Content Browser, search for Niagara assets to confirm whether '{sys}' is missing. If you can rename: drag the actual existing system onto the node's pin. If missing entirely: replace the call with a different VFX or temporarily disconnect until you create the system.
UNiagaraFunctionLibrary::SpawnSystemAtLocation.
Spawn System at LocationUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoLegacy Cascade system. Prefer Niagara (SpawnSystemAtLocation) for new projects.
SpawnEmitterAtLocationUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUGameplayStatics::SpawnEmitterAtLocation. For Niagara, use SpawnSystemAtLocation.
Spawn Emitter at LocationUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUNiagaraFunctionLibrary::SpawnSystemAtLocation. bAutoDestroy=true for fire-and-forget. Use SpawnSystemAttached to attach to a component.
SpawnSystemAtLocationUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoCall on the CharacterMovementComponent, not directly on Character. Or use IsMovingOnGround.
IsInAirUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoLess_FloatFloatUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoWhy: An execution pin (the white triangle pins, not data pins) has no wire feeding into or out of it. UE5 can't determine when this node should run. Fix: Click and drag from the white-triangle exec OUTPUT of one node to the white-triangle exec INPUT of the next. Every node in an execution sequence must be chained — orphan nodes are silently skipped (warnings) or crash compile (errors).
Internal pin names: True path is 'then', False path is 'else'. Display names show True/False.
BranchUE 5.4, 5.7updated 2mo ago