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 explode
Pattern: OnDeath → GetMesh → SetSimulatePhysics(bSimulate=true) → AddImpulse(Impulse=MakeVector(X=0,Y=0,Z=500), bVelChange=true). For explosion: GetMesh → AddRadialImpulse(Origin=ExplosionLocation, Radius=500, Strength=1000, Falloff=RIF_Linear, bVelChange=false). Key: Always call SetSimulatePhysics BEFORE AddImpulse. AddImpulse input 'bVelChange=true' for direct velocity (ignores mass). AddRadialImpulse is on PrimitiveComponent.
Requires Simulation Generates Hit Events on physics body.
Event HitUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoA blocking collision between two shapes. Fires OnHit on both actors. Use for solid impacts.
Fires when a physics collision happens. Use for impact effects, damage on contact.
Event AnyDamageUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUGameplayStatics::BreakHitResult. Most important outputs: bBlockingHit, ImpactPoint, ImpactNormal, HitActor, HitComponent.
Break Hit ResultUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoForEachLoopWithBreakUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agobXYOverride/bZOverride: if true, replaces current velocity. If false, adds to it.
LaunchCharacterUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoEventAnyDamageUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago