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.
21 results for configurator
Call 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 agoUPrimitiveComponent 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 agoSet Control RotationUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoSETUP (once per project): 1. Create Input Mapping Context (IMC_Default) in content browser. 2. Create Input Actions (IA_Move, IA_Jump, IA_Look) — set Value Type. 3. In IMC_Default, map keys to each IA. IN CHARACTER EventBeginPlay: GetController → CastTo<PlayerController> → GetSubsystem(UEnhancedInputLocalPlayerSubsystem) → AddMappingContext(IMC_Default, Priority=0). IN EVENT GRAPH: Right-click → search IA_Move → 'IA_Move (EnhancedInputAction)' node appears with Triggered/Started/Completed exec outputs and 'Action Value' data output. For 2D movement: IA_Move → GetAxis2D(ActionValue) → X to AddMovementInput(GetActorRightVector, ScaleValue=X), Y to AddMovementInput(GetActorForwardVector, ScaleValue=Y).
SETUP: In your BP, create an Event Dispatcher (e.g. 'OnPlayerDied') in the My Blueprint panel. BIND (in another BP): Get reference to actor → Bind Event to OnPlayerDied → connect a Custom Event as the target. CALL (in owning BP): Call OnPlayerDied (appears as a pink node) → this broadcasts to all bound listeners. Key: Event Dispatchers are called with 'Call <DispatcherName>' (not 'Broadcast'). Binding is done via 'Bind Event to <DispatcherName>' which has an 'Event' exec-like pin.
SetActorHiddenInGameUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoNOT K2_ prefixed.
Set Actor Hidden In GameUE 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 agoComposeRotatorsUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoAlways pass a valid PlayerController as OwningPlayer. Cast the ReturnValue to your specific widget class.
CreateWidgetUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago