Min - Math

Member of: Math Script

Returns the smaller of the two values passed in.

SyntaxEdit

float Function Min(float afValue1, float afValue2) global

ParametersEdit

  • afValue1: The first value.
  • afValue2: The second value.

Return ValueEdit

The smaller of the two values

ExamplesEdit

int a = Min(10, 15) ; a == 10
int b = Min(-1.5, -3) ; b == -3

See AlsoEdit