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 plate
Pattern: BoxCollision trigger, variable OverlappingActors(int)=0. OnBeginOverlap: OverlappingActors++ → Branch(OverlappingActors >= RequiredCount) → Activate. OnEndOverlap: OverlappingActors-- → Branch(OverlappingActors < RequiredCount) → Deactivate. Use interface or event dispatcher to notify connected actors (doors, platforms).
string
Setup: SceneComponent(root) → SpringArmComponent(child) → CameraComponent(child). SpringArm: UsePawnControlRotation=false, TargetArmLength=500. Orbit: InputAxis MouseX → MakeRotator(0,0,Value*Sensitivity) → AddRelativeRotation(SpringArm). Zoom: MouseWheel → GetTargetArmLength → Subtract(Current, Axis*Step) → FClamp(Min,Max) → SetTargetArmLength.
An unordered collection with unique elements. (The Set node for writing variables is a separate concept — see the entry for 'Set'.)
Less_FloatFloatUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoPattern: Pickup actor with SphereCollision(overlap), StaticMesh visual. OnComponentBeginOverlap → CastTo PlayerCharacter → Success: call AddScore/AddItem interface on player → PlaySoundAtLocation → SpawnEmitterAtLocation → DestroyActor(self). Set collision to OverlapOnlyPawn for performance.
UPrimitiveComponent method. Store result in variable and reuse. Create once in BeginPlay.
Create Dynamic Material InstanceUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoACharacter::LaunchCharacter. Good for knockback, bouncing, jumppads.
Launch CharacterUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoParameterName must match the parameter name in the Material exactly (case-sensitive).
SetScalarParameterValueUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoSet MaterialUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago