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.
28 results for enable
SetActorTickEnabledUE 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.
SetComponentTickEnabledUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoCall on the mesh/primitive component, NOT on the actor itself. Use GetMesh() to get SkeletalMeshComponent first.
SetSimulatePhysicsUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoPattern: custom OnDeath event → GetCharacterMovement → DisableMovement() → GetMesh → SetSimulatePhysics(bSimulate=true) → SetCollisionEnabled(NoCollision) on CapsuleComponent. Key: SetSimulatePhysics is called on the MESH component (SkeletalMeshComponent), NOT on the actor or CharacterMovementComponent. Also set collision profile: SetCollisionProfileName('Ragdoll') on the mesh.
UPrimitiveComponent method. Target must have collision.
Set Simulate PhysicsUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoMust call EnableInput(GetPlayerController(0)) before BindAction/BindAxis events fire on the actor.
EnableInputUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoAddToViewportUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoSetInputMode_GameAndUIUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoInternal function name is MultiplyMultiply_FloatFloat (operator **).
PowerUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago