Jelajahi Sumber

Travis CI: API documentation update at 2016-05-07 17:38:57 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/7220b3767642349d30e9e88cc51210e587a709b2

Message: Fix spotlight spot matrix in deferred rendering. Remove unused variables.

urho3d-travis-ci 9 tahun lalu
induk
melakukan
45d5854288
4 mengubah file dengan 30 tambahan dan 3 penghapusan
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 24 2
      Docs/LuaScriptAPI.dox
  3. 3 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -626,6 +626,7 @@ class BiasParameters
 
 // Properties:
 float constantBias;
+float normalOffset;
 float slopeScaledBias;
 };
 
@@ -8356,6 +8357,7 @@ int maxOccluderTriangles;
 int maxShadowMaps;
 int maxSortedInstances;
 int minInstances;
+float mobileNormalOffsetMul;
 float mobileShadowBiasAdd;
 float mobileShadowBiasMul;
 /* readonly */

+ 24 - 2
Docs/LuaScriptAPI.dox

@@ -567,10 +567,16 @@ Methods:
 
 - BiasParameters() (GC)
 - BiasParameters* new()
-- BiasParameters(float constantBias, float slopeScaledBias) (GC)
-- BiasParameters* new(float constantBias, float slopeScaledBias)
+- BiasParameters(float constantBias, float slopeScaledBias, float normalOffset = 0.0f) (GC)
+- BiasParameters* new(float constantBias, float slopeScaledBias, float normalOffset = 0.0f)
 - void delete()
 
+Properties:
+
+- float constantBias
+- float slopeScaledBias
+- float normalOffset
+
 <a name="Class_Billboard"></a>
 ### Billboard
 
@@ -865,6 +871,11 @@ Methods:
 - CascadeParameters* new(float split1, float split2, float split3, float split4, float fadeStart, float biasAutoAdjust = 1.0f)
 - void delete()
 
+Properties:
+
+- float fadeStart
+- float biasAutoAdjust
+
 <a name="Class_CheckBox"></a>
 ### CheckBox : BorderImage
 
@@ -2401,6 +2412,14 @@ Methods:
 - FocusParameters* new(bool focus, bool nonUniform, bool autoSize, float quantize, float minView)
 - void delete()
 
+Properties:
+
+- bool focus
+- bool nonUniform
+- bool autoSize
+- float quantize
+- float minView
+
 <a name="Class_Font"></a>
 ### Font : Resource
 
@@ -4780,6 +4799,7 @@ Methods:
 - void SetThreadedOcclusion(bool enable)
 - void SetMobileShadowBiasMul(float mul)
 - void SetMobileShadowBiasAdd(float add)
+- void SetMobileNormalOffsetMul(float mul)
 - void ReloadShaders()
 - unsigned GetNumViewports() const
 - Viewport* GetViewport(unsigned index) const
@@ -4807,6 +4827,7 @@ Methods:
 - bool GetThreadedOcclusion() const
 - float GetMobileShadowBiasMul() const
 - float GetMobileShadowBiasAdd() const
+- float GetMobileNormalOffsetMul() const
 - unsigned GetNumViews() const
 - unsigned GetNumPrimitives() const
 - unsigned GetNumBatches() const
@@ -4846,6 +4867,7 @@ Properties:
 - bool threadedOcclusion
 - float mobileShadowBiasMul
 - float mobileShadowBiasAdd
+- float mobileNormalOffsetMul
 - unsigned numViews (readonly)
 - unsigned numPrimitives (readonly)
 - unsigned numBatches (readonly)

+ 3 - 0
Docs/ScriptAPI.dox

@@ -1414,6 +1414,7 @@ namespace Urho3D
 - %View %Size %Minimum : float
 - %Depth %Constant %Bias : float
 - %Depth %Slope %Bias : float
+- %Normal %Offset : float
 - %Near/Farclip %Ratio : float
 - %View %Mask : int
 - %Light %Mask : int
@@ -3058,6 +3059,7 @@ Properties:
 Properties:
 
 - float constantBias
+- float normalOffset
 - float slopeScaledBias
 
 <a name="Class_Billboard"></a>
@@ -9876,6 +9878,7 @@ Properties:
 - int maxShadowMaps
 - int maxSortedInstances
 - int minInstances
+- float mobileNormalOffsetMul
 - float mobileShadowBiasAdd
 - float mobileShadowBiasMul
 - uint numBatches // readonly

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.218
+0.0.219