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 parameter
ParameterName must match the parameter name in the Material exactly (case-sensitive).
SetScalarParameterValueUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUMaterialInstanceDynamic method. Parameter name must match material graph.
Set Scalar Parameter ValueUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoWhy: You're binding a function to an Event Dispatcher (Delegate), but the function's parameters don't match the dispatcher's expected signature '{expected}'. You passed '{got}'. Fix: Either: (a) change your function's input parameter types to match the dispatcher (open the function → My Blueprint → Inputs section → match types one-by-one), or (b) bind a DIFFERENT function whose signature already matches. The Details panel of the Bind Event node shows the expected signature.
Pattern: EventBeginPlay → GetMesh → CreateDynamicMaterialInstance(ElementIndex=0) → SetVariable(DynMat=ReturnValue). Then on Tick or timer: SetScalarParameterValue(ParameterName='Opacity', Value=SinWave). Or for color: SetVectorParameterValue(ParameterName='Color', Value=MakeLinearColor). Key: CreateDynamicMaterialInstance is called on the COMPONENT (GetMesh), not the actor. Must store the result before using Set*ParameterValue. ParameterName MUST match the name in the Material asset exactly.
SetVectorParameterValueUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUMaterialInstanceDynamic method. Used for color changes (BaseColor, EmissiveColor).
Set Vector Parameter ValueUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoSet Texture Parameter ValueUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoBlends 1-2 input parameters (e.g. speed × direction) across a 2D space of animations. Used for locomotion.
A lightweight override of a Material's parameters (color, scalar). Far cheaper than creating new Materials.
string