View source for Script/VisualGlobalFunctions
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
Return to Script/VisualGlobalFunctions.
You do not have permission to edit this page, for the following reason:
The action you have requested is limited to users in the group: Users.
You can view and copy the source of this page.
Return to Script/VisualGlobalFunctions.
This is a list of global functions available for use in visual scripts.
void | print (const string&in) |
float | RandomFloat (const float _fFrom, const float _fTo) |
int | RandomInt (const int _iFrom, const int _iTo) |
float | Sin (const float _fRadians) |
float | Cos (const float _fRadians) |
float | Tan (const float _fRadians) |
float | ArcSin (const float _fX) |
float | ArcCos (const float _fX) |
float | ArcTan (const float _fX) |
float | ArcTan (const float _fY, const float _fX) |
float | Round (const float _fValue) |
float | RadianToDegree (const float _fRadians) |
float | DegreeToRadian (const float _fDegree) |
float | Clamp (const float _fValue, const float _fMin, const float _fMax) |
float | Pow (const float _fX, const float _fPower) |
float | Sqrt (const float _fValue) |
float | Interpolate (const float _fA, const float _fB, const float _fS) |
float | Interpolate (const float _fA, const float _fB, const float _fS, const EInterpolation _Mode, const float _fExponent = 2.0f) |