Jelajahi Sumber

Travis CI: API documentation update at 2016-10-04 21:28:16 UTC.
[ci package]

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

Message: Line antialiasing support in Graphics, Material, DebugRenderer classes. Closes #1627.

urho3d-travis-ci 9 tahun lalu
induk
melakukan
c3c45a0c1b
4 mengubah file dengan 14 tambahan dan 1 penghapusan
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 6 0
      Docs/LuaScriptAPI.dox
  3. 5 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -4080,6 +4080,7 @@ bool enabled;
 bool enabledEffective;
 /* readonly */
 uint id;
+bool lineAntiAlias;
 /* readonly */
 Node node;
 /* readonly */
@@ -6335,6 +6336,7 @@ String category;
 CullMode cullMode;
 BiasParameters depthBias;
 FillMode fillMode;
+bool lineAntiAlias;
 /* readonly */
 uint memoryUse;
 String name;

+ 6 - 0
Docs/LuaScriptAPI.dox

@@ -1932,6 +1932,7 @@ Properties:
 
 Methods:
 
+- void SetLineAntiAlias(bool enable)
 - void SetView(Camera* camera)
 - void AddLine(const Vector3& start, const Vector3& end, const Color& color, bool depthTest = true)
 - void AddLine(const Vector3& start, const Vector3& end, unsigned color, bool depthTest = true)
@@ -1949,6 +1950,7 @@ Methods:
 - void AddCross(const Vector3& center, float size, const Color& color, bool depthTest = true)
 - void AddQuad(const Vector3& center, float width, float height, const Color& color, bool depthTest = true)
 - void Render()
+- bool GetLineAntiAlias() const
 - const Matrix3x4& GetView() const
 - const Matrix4& GetProjection() const
 - const Frustum& GetFrustum() const
@@ -1956,6 +1958,7 @@ Methods:
 
 Properties:
 
+- bool lineAntiAlias
 - Matrix3x4& view (readonly)
 - Matrix4& projection (readonly)
 - Frustum& frustum (readonly)
@@ -3306,6 +3309,7 @@ Methods:
 - void SetFillMode(FillMode mode)
 - void SetDepthBias(const BiasParameters& parameters)
 - void SetAlphaToCoverage(bool enable)
+- void SetLineAntiAlias(bool enable)
 - void SetRenderOrder(char renderOrder)
 - void SetOcclusion(bool enable)
 - void SetScene(Scene* scene)
@@ -3328,6 +3332,7 @@ Methods:
 - FillMode GetFillMode() const
 - const BiasParameters& GetDepthBias() const
 - bool GetAlphaToCoverage() const
+- bool GetLineAntiAlias() const
 - char GetRenderOrder() const
 - bool GetOcclusion() const
 - bool GetSpecular() const
@@ -3342,6 +3347,7 @@ Properties:
 - FillMode fillMode
 - BiasParameters depthBias
 - bool alphaToCoverage
+- bool lineAntiAlias
 - char renderOrder
 - bool occlusion
 - bool specular (readonly)

+ 5 - 0
Docs/ScriptAPI.dox

@@ -1377,6 +1377,9 @@ namespace Urho3D
 - %Shadow %Mask : int
 - %Zone %Mask : int
 
+### DebugRenderer
+- %Line %Antialias : bool
+
 ### DecalSet
 - %Is %Enabled : bool
 - %Material : ResourceRef
@@ -6300,6 +6303,7 @@ Properties:
 - bool enabled
 - bool enabledEffective // readonly
 - uint id // readonly
+- bool lineAntiAlias
 - Node@ node // readonly
 - uint numAttributes // readonly
 - ObjectAnimation@ objectAnimation
@@ -8238,6 +8242,7 @@ Properties:
 - CullMode cullMode
 - BiasParameters depthBias
 - FillMode fillMode
+- bool lineAntiAlias
 - uint memoryUse // readonly
 - String name
 - uint numTechniques

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.13
+0.1.14