浏览代码

Travis CI: API documentation update at 2015-08-06 13:59:00 UTC.
[ci package]

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

Message: 8-bit render order support in materials. This adjusts the drawing order within a scene pass, and takes precedence over both state & distance sorting.

urho3d-travis-ci 10 年之前
父节点
当前提交
bc58db968d
共有 4 个文件被更改,包括 10 次插入4 次删除
  1. 1 0
      Docs/AngelScriptAPI.h
  2. 7 3
      Docs/LuaScriptAPI.dox
  3. 1 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 1 - 0
Docs/AngelScriptAPI.h

@@ -5810,6 +5810,7 @@ uint numTechniques;
 bool occlusion;
 /* readonly */
 int refs;
+uint8 renderOrder;
 Scene scene;
 /* readonly */
 Array<String> shaderParameterNames;

+ 7 - 3
Docs/LuaScriptAPI.dox

@@ -3093,6 +3093,7 @@ Methods:
 - void SetShadowCullMode(CullMode mode)
 - void SetFillMode(FillMode mode)
 - void SetDepthBias(const BiasParameters& parameters)
+- void SetRenderOrder(char renderOrder)
 - void SetScene(Scene* scene)
 - void RemoveShaderParameter(const String name)
 - void ReleaseShaders()
@@ -3110,15 +3111,18 @@ Methods:
 - CullMode GetShadowCullMode() const
 - FillMode GetFillMode() const
 - const BiasParameters& GetDepthBias() const
+- char GetRenderOrder() const
 - bool GetOcclusion() const
 - bool GetSpecular() const
 - Scene* GetScene() const
 
 Properties:
 
-- CullMode cullMode (readonly)
-- CullMode shadowCullMode (readonly)
-- FillMode fillMode (readonly)
+- CullMode cullMode
+- CullMode shadowCullMode
+- FillMode fillMode
+- BiasParameters depthBias
+- char renderOrder
 - bool occlusion (readonly)
 - bool specular (readonly)
 - Scene* scene

+ 1 - 0
Docs/ScriptAPI.dox

@@ -7337,6 +7337,7 @@ Properties:
 - uint numTechniques
 - bool occlusion // readonly
 - int refs // readonly
+- uint8 renderOrder
 - Scene@ scene
 - String[]@ shaderParameterNames // readonly
 - Variant[] shaderParameters

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.127
+0.0.128