Browse Source

Travis CI: API documentation update at 2016-08-16 17:41:26 UTC.
[ci package]

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

Message: Add brief documentation section on physical light values.

urho3d-travis-ci 9 years ago
parent
commit
84e5da6155
4 changed files with 17 additions and 1 deletions
  1. 4 0
      Docs/AngelScriptAPI.h
  2. 7 0
      Docs/LuaScriptAPI.dox
  3. 5 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 4 - 0
Docs/AngelScriptAPI.h

@@ -5634,6 +5634,8 @@ bool castShadows;
 /* readonly */
 /* readonly */
 String category;
 String category;
 Color color;
 Color color;
+/* readonly */
+Color colorFromTemperature;
 float drawDistance;
 float drawDistance;
 /* readonly */
 /* readonly */
 Color effectiveColor;
 Color effectiveColor;
@@ -5681,11 +5683,13 @@ float shadowNearFarRatio;
 float shadowResolution;
 float shadowResolution;
 Texture shapeTexture;
 Texture shapeTexture;
 float specularIntensity;
 float specularIntensity;
+float temperature;
 bool temporary;
 bool temporary;
 /* readonly */
 /* readonly */
 StringHash type;
 StringHash type;
 /* readonly */
 /* readonly */
 String typeName;
 String typeName;
+bool usePhysicalValues;
 uint viewMask;
 uint viewMask;
 /* readonly */
 /* readonly */
 int weakRefs;
 int weakRefs;

+ 7 - 0
Docs/LuaScriptAPI.dox

@@ -3014,6 +3014,8 @@ Methods:
 - void SetLightType(LightType type)
 - void SetLightType(LightType type)
 - void SetPerVertex(bool enable)
 - void SetPerVertex(bool enable)
 - void SetColor(const Color& color)
 - void SetColor(const Color& color)
+- void SetTemperature(float temperature)
+- void SetUsePhysicalValues(bool enable)
 - void SetSpecularIntensity(float intensity)
 - void SetSpecularIntensity(float intensity)
 - void SetBrightness(float brightness)
 - void SetBrightness(float brightness)
 - void SetRange(float range)
 - void SetRange(float range)
@@ -3032,9 +3034,12 @@ Methods:
 - LightType GetLightType() const
 - LightType GetLightType() const
 - bool GetPerVertex() const
 - bool GetPerVertex() const
 - const Color& GetColor() const
 - const Color& GetColor() const
+- float GetTemperature() const
 - float GetSpecularIntensity() const
 - float GetSpecularIntensity() const
 - float GetBrightness() const
 - float GetBrightness() const
 - Color GetEffectiveColor() const
 - Color GetEffectiveColor() const
+- Color GetColorFromTemperature() const
+- bool GetUsePhysicalValues() const
 - float GetEffectiveSpecularIntensity() const
 - float GetEffectiveSpecularIntensity() const
 - float GetRange() const
 - float GetRange() const
 - float GetFov() const
 - float GetFov() const
@@ -3058,6 +3063,8 @@ Properties:
 - LightType lightType
 - LightType lightType
 - bool perVertex
 - bool perVertex
 - Color& color
 - Color& color
+- float temperature
+- bool usePhysicalValues
 - float specularIntensity
 - float specularIntensity
 - float brightness
 - float brightness
 - float range
 - float range

+ 5 - 0
Docs/ScriptAPI.dox

@@ -1414,6 +1414,8 @@ namespace Urho3D
 - %Color : Color
 - %Color : Color
 - %Specular %Intensity : float
 - %Specular %Intensity : float
 - %Brightness %Multiplier : float
 - %Brightness %Multiplier : float
+- %Temperature : float
+- %Use %Physical %Values : bool
 - %Range : float
 - %Range : float
 - %Spot %FOV : float
 - %Spot %FOV : float
 - %Spot %Aspect %Ratio : float
 - %Spot %Aspect %Ratio : float
@@ -7490,6 +7492,7 @@ Properties:
 - bool castShadows
 - bool castShadows
 - String category // readonly
 - String category // readonly
 - Color color
 - Color color
+- Color colorFromTemperature // readonly
 - float drawDistance
 - float drawDistance
 - Color effectiveColor // readonly
 - Color effectiveColor // readonly
 - float effectiveSpecularIntensity // readonly
 - float effectiveSpecularIntensity // readonly
@@ -7526,9 +7529,11 @@ Properties:
 - float shadowResolution
 - float shadowResolution
 - Texture@ shapeTexture
 - Texture@ shapeTexture
 - float specularIntensity
 - float specularIntensity
+- float temperature
 - bool temporary
 - bool temporary
 - StringHash type // readonly
 - StringHash type // readonly
 - String typeName // readonly
 - String typeName // readonly
+- bool usePhysicalValues
 - uint viewMask
 - uint viewMask
 - int weakRefs // readonly
 - int weakRefs // readonly
 - BoundingBox worldBoundingBox // readonly
 - BoundingBox worldBoundingBox // readonly

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.250
+0.0.251