Skip to main content

floatfract

warning

This function starts with a lowercase letter.

Description

Get the fractional part of a float. This means the value of the numbers after the decimal point.

NameDescription
Float:valueThe float to get the fractional part of.

Returns

The fractional part of the float, as a float value.

Examples

new Float:fFract = floatfract(3.14159); // returns 0.14159
  • floatround: Convert a float to an integer (rounding).