Browse Source

Travis CI: API documentation update at 2016-11-18 08:12:47 UTC.
[ci package]

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

Message: Remove isAreaLight variable completely from Light class, as it's unused. Some cleanup / comment changes. Fix PBRDeferred GLSL shader.

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

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -5745,6 +5745,7 @@ Frustum frustum;
 uint id;
 /* readonly */
 bool inView;
+float length;
 uint lightMask;
 LightType lightType;
 float lodBias;
@@ -5761,6 +5762,7 @@ ObjectAnimation objectAnimation;
 bool occludee;
 bool occluder;
 bool perVertex;
+float radius;
 Texture rampTexture;
 float range;
 /* readonly */

+ 6 - 0
Docs/LuaScriptAPI.dox

@@ -3044,6 +3044,8 @@ Methods:
 - void SetPerVertex(bool enable)
 - void SetColor(const Color& color)
 - void SetTemperature(float temperature)
+- void SetRadius(float redius)
+- void SetLength(float length)
 - void SetUsePhysicalValues(bool enable)
 - void SetSpecularIntensity(float intensity)
 - void SetBrightness(float brightness)
@@ -3065,6 +3067,8 @@ Methods:
 - bool GetPerVertex() const
 - const Color& GetColor() const
 - float GetTemperature() const
+- float GetRadius() const
+- float GetLength() const
 - float GetSpecularIntensity() const
 - float GetBrightness() const
 - Color GetEffectiveColor() const
@@ -3095,6 +3099,8 @@ Properties:
 - bool perVertex
 - Color& color
 - float temperature
+- float radius
+- float length
 - bool usePhysicalValues
 - float specularIntensity
 - float brightness

+ 4 - 0
Docs/ScriptAPI.dox

@@ -1489,6 +1489,8 @@ namespace Urho3D
 - %Brightness %Multiplier : float
 - %Temperature : float
 - %Use %Physical %Values : bool
+- %Radius : float
+- %Length : float
 - %Range : float
 - %Spot %FOV : float
 - %Spot %Aspect %Ratio : float
@@ -7798,6 +7800,7 @@ Properties:
 - Frustum frustum // readonly
 - uint id // readonly
 - bool inView // readonly
+- float length
 - uint lightMask
 - LightType lightType
 - float lodBias
@@ -7810,6 +7813,7 @@ Properties:
 - bool occludee
 - bool occluder
 - bool perVertex
+- float radius
 - Texture@ rampTexture
 - float range
 - int refs // readonly

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.30
+0.1.31