|
|
@@ -8727,9 +8727,8 @@ Properties:
|
|
|
- Time* GetTime()
|
|
|
- long GetTotalMemory()
|
|
|
- UI* GetUI()
|
|
|
-- bool HasSubscribedToEvent(Object* sender, const String eventName)
|
|
|
- bool HasSubscribedToEvent(const String eventName)
|
|
|
-- unsigned IntegerLog2(unsigned value)
|
|
|
+- bool HasSubscribedToEvent(Object* sender, const String eventName)
|
|
|
- float InverseLerp(float lhs, float rhs, float x)
|
|
|
- bool IsAbsolutePath(const String pathName)
|
|
|
- bool IsAlpha(unsigned ch)
|
|
|
@@ -8738,6 +8737,7 @@ Properties:
|
|
|
- bool IsPowerOfTwo(unsigned value)
|
|
|
- float Lerp(float lhs, float rhs, float t)
|
|
|
- float Ln(float x)
|
|
|
+- unsigned LogBaseTwo(unsigned value)
|
|
|
- float Max(float lhs, float rhs)
|
|
|
- int MaxInt(int lhs, int rhs)
|
|
|
- float Min(float lhs, float rhs)
|
|
|
@@ -8750,8 +8750,8 @@ Properties:
|
|
|
- int Rand()
|
|
|
- float RandStandardNormal()
|
|
|
- float Random(float min, float max)
|
|
|
-- float Random(float range)
|
|
|
- float Random()
|
|
|
+- float Random(float range)
|
|
|
- int RandomInt(int range)
|
|
|
- int RandomInt(int min, int max)
|
|
|
- float RandomNormal(float meanValue, float variance)
|
|
|
@@ -8770,11 +8770,11 @@ Properties:
|
|
|
- float Sin(float angle)
|
|
|
- float SmoothStep(float lhs, float rhs, float t)
|
|
|
- float Sqrt(float x)
|
|
|
+- float StableRandom(const Vector3& seed)
|
|
|
- float StableRandom(const Vector2& seed)
|
|
|
- float StableRandom(float seed)
|
|
|
-- float StableRandom(const Vector3& seed)
|
|
|
-- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
|
|
|
- void SubscribeToEvent(void* sender, const String eventName, void* functionOrFunctionName)
|
|
|
+- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
|
|
|
- float Tan(float angle)
|
|
|
- bool ToBool(const String source)
|
|
|
- Color ToColor(const String source)
|
|
|
@@ -8800,37 +8800,37 @@ Properties:
|
|
|
- Vector4 ToVector4(const String source, bool allowMissingCoords = false)
|
|
|
- void UnsubscribeFromAllEvents()
|
|
|
- void UnsubscribeFromAllEventsExcept(const Vector<String>& exceptionNames)
|
|
|
-- void UnsubscribeFromEvent(const String eventName)
|
|
|
- void UnsubscribeFromEvent(Object* sender, const String eventName)
|
|
|
+- void UnsubscribeFromEvent(const String eventName)
|
|
|
- void UnsubscribeFromEvents(Object* sender)
|
|
|
+- Vector2 VectorCeil(const Vector2& vec)
|
|
|
- Vector4 VectorCeil(const Vector4& vec)
|
|
|
- Vector3 VectorCeil(const Vector3& vec)
|
|
|
-- Vector2 VectorCeil(const Vector2& vec)
|
|
|
-- IntVector3 VectorCeilToInt(const Vector3& vec)
|
|
|
- IntVector2 VectorCeilToInt(const Vector2& vec)
|
|
|
-- Vector4 VectorFloor(const Vector4& vec)
|
|
|
-- Vector2 VectorFloor(const Vector2& vec)
|
|
|
+- IntVector3 VectorCeilToInt(const Vector3& vec)
|
|
|
- Vector3 VectorFloor(const Vector3& vec)
|
|
|
+- Vector2 VectorFloor(const Vector2& vec)
|
|
|
+- Vector4 VectorFloor(const Vector4& vec)
|
|
|
- IntVector2 VectorFloorToInt(const Vector2& vec)
|
|
|
- IntVector3 VectorFloorToInt(const Vector3& vec)
|
|
|
-- Vector3 VectorLerp(const Vector3& lhs, const Vector3& rhs, const Vector3& t)
|
|
|
-- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
|
|
|
- Vector2 VectorLerp(const Vector2& lhs, const Vector2& rhs, const Vector2& t)
|
|
|
+- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
|
|
|
+- Vector3 VectorLerp(const Vector3& lhs, const Vector3& rhs, const Vector3& t)
|
|
|
+- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
|
|
|
- Vector4 VectorMax(const Vector4& lhs, const Vector4& rhs)
|
|
|
-- IntVector3 VectorMax(const IntVector3& lhs, const IntVector3& rhs)
|
|
|
- IntVector2 VectorMax(const IntVector2& lhs, const IntVector2& rhs)
|
|
|
-- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
|
|
|
+- IntVector3 VectorMax(const IntVector3& lhs, const IntVector3& rhs)
|
|
|
- Vector2 VectorMax(const Vector2& lhs, const Vector2& rhs)
|
|
|
-- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
|
|
|
+- Vector3 VectorMin(const Vector3& lhs, const Vector3& rhs)
|
|
|
- IntVector3 VectorMin(const IntVector3& lhs, const IntVector3& rhs)
|
|
|
-- IntVector2 VectorMin(const IntVector2& lhs, const IntVector2& rhs)
|
|
|
+- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
|
|
|
- Vector4 VectorMin(const Vector4& lhs, const Vector4& rhs)
|
|
|
-- Vector3 VectorMin(const Vector3& lhs, const Vector3& rhs)
|
|
|
+- IntVector2 VectorMin(const IntVector2& lhs, const IntVector2& rhs)
|
|
|
- Vector2 VectorRound(const Vector2& vec)
|
|
|
-- Vector3 VectorRound(const Vector3& vec)
|
|
|
- Vector4 VectorRound(const Vector4& vec)
|
|
|
-- IntVector2 VectorRoundToInt(const Vector2& vec)
|
|
|
+- Vector3 VectorRound(const Vector3& vec)
|
|
|
- IntVector3 VectorRoundToInt(const Vector3& vec)
|
|
|
+- IntVector2 VectorRoundToInt(const Vector2& vec)
|
|
|
|
|
|
|
|
|
\section LuaScriptAPI_GlobalProperties Global properties
|