Browse Source

Travis CI: API documentation update at 2016-03-16 10:07:14 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/a9625eae8ade9d05edc4fe22ca0043393f48694e

Message: Add contributor credit, fix editor code comment.

urho3d-travis-ci 9 years ago
parent
commit
e9cd8db735
4 changed files with 10 additions and 6 deletions
  1. 3 1
      Docs/AngelScriptAPI.h
  2. 3 3
      Docs/LuaScriptAPI.dox
  3. 3 1
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 3 - 1
Docs/AngelScriptAPI.h

@@ -14117,6 +14117,7 @@ String GetFileSizeString(uint64);
 uint GetFloat16Format();
 uint GetFloat32Format();
 uint GetFormat(const String&);
+Variant GetGlobalVar(const String&);
 String GetInternalPath(const String&);
 uint GetLinearDepthFormat();
 uint GetLuminanceAlphaFormat();
@@ -14178,6 +14179,7 @@ String RemoveTrailingSlash(const String&);
 String ReplaceExtension(const String&, const String&);
 uint SDBMHash(uint, uint8);
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
+void SetGlobalVar(const String&, Variant&);
 void SetMiniDumpDir(const String&);
 void SetRandomSeed(uint);
 float Sign(float);
@@ -14208,6 +14210,7 @@ DebugHud debugHud;
 DebugRenderer debugRenderer;
 Engine engine;
 FileSystem fileSystem;
+VariantMap globalVars;
 Graphics graphics;
 Input input;
 Localization localization;
@@ -14713,4 +14716,3 @@ uint VO_LOW_MATERIAL_QUALITY;
 uint VO_NONE;
 Color WHITE;
 Color YELLOW;
-VariantMap globalVars;

+ 3 - 3
Docs/LuaScriptAPI.dox

@@ -7811,9 +7811,9 @@ Properties:
 - String GetFileNameAndExtension(const String fullPath, bool lowercaseExtension = false)
 - String GetFileSizeString(long memorySize)
 - FileSystem* GetFileSystem()
-- Graphics* GetGraphics()
 - Variant GetGlobalVar(const String key)
 - VariantMap& GetGlobalVars()
+- Graphics* GetGraphics()
 - Input* GetInput()
 - String GetInternalPath(const String pathName)
 - Localization* GetLocalization()
@@ -7848,8 +7848,8 @@ Properties:
 - int Rand()
 - float RandStandardNormal()
 - float Random()
-- float Random(float min, float max)
 - float Random(float range)
+- float Random(float min, float max)
 - int RandomInt(int min, int max)
 - int RandomInt(int range)
 - float RandomNormal(float meanValue, float variance)
@@ -7864,8 +7864,8 @@ Properties:
 - float Sign(float value)
 - float Sin(float angle)
 - float SmoothStep(float lhs, float rhs, float t)
-- 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)

+ 3 - 1
Docs/ScriptAPI.dox

@@ -14965,6 +14965,7 @@ Properties:
 - uint GetFloat16Format()
 - uint GetFloat32Format()
 - uint GetFormat(const String&)
+- Variant GetGlobalVar(const String&)
 - String GetInternalPath(const String&)
 - uint GetLinearDepthFormat()
 - uint GetLuminanceAlphaFormat()
@@ -15026,6 +15027,7 @@ Properties:
 - String ReplaceExtension(const String&, const String&)
 - uint SDBMHash(uint, uint8)
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
+- void SetGlobalVar(const String&, Variant&)
 - void SetMiniDumpDir(const String&)
 - void SetRandomSeed(uint)
 - float Sign(float)
@@ -15055,6 +15057,7 @@ Properties:
 - DebugRenderer@ debugRenderer
 - Engine@ engine
 - FileSystem@ fileSystem
+- VariantMap globalVars
 - Graphics@ graphics
 - Input@ input
 - Localization@ localization
@@ -15559,7 +15562,6 @@ Properties:
 - uint VO_NONE
 - Color WHITE
 - Color YELLOW
-- VariantMap globalVars
 */
 
 }

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.200
+0.0.201