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 day
Pattern: Variables TimeOfDay(float)=12.0, DayLengthMinutes(float)=10. Tick: TimeOfDay += (DeltaSeconds/DayLengthMinutes/60)*24 → FMod(TimeOfDay, 24) → MapRangeClamped(TimeOfDay, 0, 24, 0, 360) → MakeRotator(SunPitch, 0, 0) → SetActorRotation(SunLight). Update sky SunDirection and light color/intensity based on time.
string
OR=BooleanOR, NOT=Not_PreBool, XOR=BooleanXOR
ANDUE 5.4, 5.7updated 2mo agoLess_FloatFloatUE 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 agoK2Node_FormatText. Use {ArgName} placeholders in format string. Adds input pins per argument automatically.
Format TextUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoRequires Simulation Generates Hit Events on physics body.
Event HitUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoDealing damage: Event → ApplyDamage(TargetActor, BaseDamage, InstigatorController, DamageCauser, DamageTypeClass). Receiving: EventAnyDamage → Damage output → Subtract_FloatFloat(CurrentHealth, Damage) → FClamp(Result, 0, MaxHealth) → SET CurrentHealth → Branch(CurrentHealth <= 0) → True: DestroyActor. Initialize CurrentHealth=MaxHealth in BeginPlay.
Sin (Radians)UE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoSinUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago