RealDocs

UKismetMathLibrary::LinearColor_Blue

function Engine Blueprint Since 4.0
#include "Kismet/KismetMathLibrary.h"
Access: public Specifiers: staticBlueprintPure

Description

Returns the linear-space blue color (0, 0, 1, 1). Commonly used for water, sky indicators, and cold-state UI.

Caveats & Gotchas

  • In C++ prefer FLinearColor::Blue for direct access without a function call overhead.
  • Pure blue in linear space is relatively dim compared to red and green due to human luminance sensitivity weighting; use higher blue values when creating perceived-equal-brightness palettes.

Signature

static UE_INL_API FLinearColor LinearColor_Blue();

Return Type

FLinearColor

Example

Tint a material instance blue C++
DynamicMaterial->SetVectorParameterValue(TEXT("Color"), UKismetMathLibrary::LinearColor_Blue());

Version History

Introduced in: 4.0

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.