Browse Source

Travis CI: API documentation update at 2014-08-29 22:14:41 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
31157975b6
4 changed files with 11 additions and 5 deletions
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 6 4
      Docs/LuaScriptAPI.dox
  3. 2 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Engine/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -12073,7 +12073,9 @@ float Ceil(float);
 float Clamp(float, float, float);
 float Clamp(float, float, float);
 int Clamp(int, int, int);
 int Clamp(int, int, int);
 void ClearDelayedExecute(const String& = String ( ));
 void ClearDelayedExecute(const String& = String ( ));
+VectorBuffer CompressVectorBuffer(VectorBuffer&);
 float Cos(float);
 float Cos(float);
+VectorBuffer DecompressVectorBuffer(VectorBuffer&);
 void DelayedExecute(float, bool, const String&);
 void DelayedExecute(float, bool, const String&);
 void DelayedExecute(float, bool, const String&, const Array<Variant>);
 void DelayedExecute(float, bool, const String&, const Array<Variant>);
 bool Equals(float, float);
 bool Equals(float, float);

+ 6 - 4
Docs/LuaScriptAPI.dox

@@ -7106,7 +7106,9 @@ Properties:
 - float Atan2(float y, float x)
 - float Atan2(float y, float x)
 - float Clamp(float value, float min, float max)
 - float Clamp(float value, float min, float max)
 - int ClampInt(int value, int min, int max)
 - int ClampInt(int value, int min, int max)
+- VectorBuffer CompressVectorBuffer(VectorBuffer& src)
 - float Cos(float angle)
 - float Cos(float angle)
+- VectorBuffer DecompressVectorBuffer(VectorBuffer& src)
 - bool Equals(float lhs, float rhs)
 - bool Equals(float lhs, float rhs)
 - void ErrorDialog(const String title, const String message)
 - void ErrorDialog(const String title, const String message)
 - void ErrorExit(const String message = String::EMPTY, int exitCode = EXIT_FAILURE)
 - void ErrorExit(const String message = String::EMPTY, int exitCode = EXIT_FAILURE)
@@ -7155,11 +7157,11 @@ Properties:
 - void PrintLine(const String str, bool error = false)
 - void PrintLine(const String str, bool error = false)
 - int Rand()
 - int Rand()
 - float RandStandardNormal()
 - float RandStandardNormal()
-- float Random()
-- float Random(float min, float max)
 - float Random(float range)
 - float Random(float range)
-- int RandomInt(int range)
+- float Random(float min, float max)
+- float Random()
 - int RandomInt(int min, int max)
 - int RandomInt(int min, int max)
+- int RandomInt(int range)
 - float RandomNormal(float meanValue, float variance)
 - float RandomNormal(float meanValue, float variance)
 - String RemoveTrailingSlash(const String pathName)
 - String RemoveTrailingSlash(const String pathName)
 - String ReplaceExtension(const String fullPath, const String newExtension)
 - String ReplaceExtension(const String fullPath, const String newExtension)
@@ -7170,8 +7172,8 @@ Properties:
 - float Sign(float value)
 - float Sign(float value)
 - float Sin(float angle)
 - float Sin(float angle)
 - float SmoothStep(float lhs, float rhs, float t)
 - float SmoothStep(float lhs, float rhs, float t)
-- void SubscribeToEvent(const String eventName, const String functionName)
 - void SubscribeToEvent(void* sender, const String eventName, const String functionName)
 - void SubscribeToEvent(void* sender, const String eventName, const String functionName)
+- void SubscribeToEvent(const String eventName, const String functionName)
 - float Tan(float angle)
 - float Tan(float angle)
 - bool ToBool(const String source)
 - bool ToBool(const String source)
 - Color ToColor(const String source)
 - Color ToColor(const String source)

+ 2 - 0
Docs/ScriptAPI.dox

@@ -12681,7 +12681,9 @@ Properties:
 - float Clamp(float, float, float)
 - float Clamp(float, float, float)
 - int Clamp(int, int, int)
 - int Clamp(int, int, int)
 - void ClearDelayedExecute(const String& = String ( ))
 - void ClearDelayedExecute(const String& = String ( ))
+- VectorBuffer CompressVectorBuffer(VectorBuffer&)
 - float Cos(float)
 - float Cos(float)
+- VectorBuffer DecompressVectorBuffer(VectorBuffer&)
 - void DelayedExecute(float, bool, const String&)
 - void DelayedExecute(float, bool, const String&)
 - void DelayedExecute(float, bool, const String&, const Variant[]@)
 - void DelayedExecute(float, bool, const String&, const Variant[]@)
 - bool Equals(float, float)
 - bool Equals(float, float)

+ 1 - 1
Source/Engine/.soversion

@@ -1 +1 @@
-0.0.12
+0.0.13