Floor - Math

From the Fallout4 CreationKit Wiki
Revision as of 11:14, 19 June 2019 by imported>Ice Eyes (→‎Examples: Added "Math." prefix)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Math Script

Calculates the largest integer less than or equal to the passed in value.

Syntax

int Function Floor(float afValue) native global

Parameters

  • afValue: The value to get the floor of.

Return Value

The floor of the passed-in value.

Examples

int x = Math.Floor(2.1) ; x == 2
int y = Math.Floor(5.9) ; y == 5

See Also