RealDocs

UKismetMathLibrary::IntPoint_Down

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

Description

Returns the constant FIntPoint representing the Down direction (0, 1) in 2D integer grid space.

Caveats & Gotchas

  • Returns (0, 1) because screen/grid Y increases downward. If you are thinking in world-space math coordinates where Y increases upward, the semantics are inverted.
  • Pair with IntPoint_Up to implement bidirectional vertical traversal; the two constants are exact inverses of each other.

Signature

static UE_INL_API FIntPoint IntPoint_Down();

Return Type

FIntPoint

Example

Move cursor down one row C++
FIntPoint CursorPos = FIntPoint(3, 2);
CursorPos += UKismetMathLibrary::IntPoint_Down(); // CursorPos becomes (3, 3)

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.