warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
floatadd
warning
This function starts with a lowercase letter.
Description
Adds two floats together. This function is redundant as the standard operator (+) does the same thing.
Name | Description |
---|---|
Float:Number1 | First float. |
Float:Number2 | Second float. |
Returns
The sum of the two given floats.
Examples
public OnGameModeInit()
{
new Float:Number1 = 2, Float:Number2 = 3; // Declares two floats, Number1 (2) and Number2 (3)
new Float:Sum;
Sum = floatadd(Number1, Number2); // Saves the Sum(=2+3 = 5) of Number1 and Number2 in the float "Sum"
return 1;
}