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 shake
APlayerCameraManager method. Use ClientStartCameraShake on PlayerController.
Start Camera ShakeUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoPattern: On EventAnyDamage → GetPlayerController(0) → GetPlayerCameraManager → StartCameraShake(DamageShakeClass, MapRangeClamped(Damage, 0, 100, 0.3, 1.0)). Create CameraShakeClass as BP extending UCameraShakeBase with RotOscillation and LocOscillation settings.
One-shot force. bVelChange=true treats Impulse as velocity change.
Add ImpulseUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agobVelChange=true treats Impulse as direct velocity change (ignores mass). bVelChange=false treats it as a force impulse (mass-dependent).
AddImpulseUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoDoNUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoPattern: 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.
string
StopJumpingUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoJumpUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoACharacter::Jump. Respects JumpZVelocity from CharacterMovement.
JumpUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago