Pārlūkot izejas kodu

Travis CI: API documentation update at 2014-10-26 05:16:35 UTC.
[ci package]

urho3d-travis-ci 11 gadi atpakaļ
vecāks
revīzija
4a362593c2
4 mainītis faili ar 23 papildinājumiem un 4 dzēšanām
  1. 6 0
      Docs/AngelScriptAPI.h
  2. 11 2
      Docs/LuaScriptAPI.dox
  3. 5 1
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Engine/.soversion

+ 6 - 0
Docs/AngelScriptAPI.h

@@ -9397,6 +9397,8 @@ class Technique
 {
 // Methods:
 Pass CreatePass(StringHash);
+Pass GetPass(StringHash);
+Pass GetSupportedPass(StringHash);
 bool HasPass(StringHash) const;
 bool Load(File);
 bool Load(VectorBuffer&);
@@ -9414,6 +9416,10 @@ String category;
 uint memoryUse;
 String name;
 /* readonly */
+uint numPasses;
+/* readonly */
+Array<StringHash> passTypes;
+/* readonly */
 Array<Pass> passes;
 /* readonly */
 int refs;

+ 11 - 2
Docs/LuaScriptAPI.dox

@@ -3754,10 +3754,14 @@ Properties:
 Methods:
 
 - bool IsSM3() const
+- const String GetVertexShader() const
+- const String GetPixelShader() const
 
 Properties:
 
 - bool SM3 (readonly)
+- const String vertexShader (readonly)
+- const String pixelShader (readonly)
 
 <a name="Class_PhysicsRaycastResult"></a>
 ### PhysicsRaycastResult
@@ -5193,13 +5197,18 @@ Properties:
 
 Methods:
 
-- bool HasPass(const String type) const
-- Pass* GetPass(const String type) const
+- bool HasPass(const StringHash type) const
+- Pass* GetPass(const StringHash type) const
+- Pass* GetSupportedPass(const StringHash type) const
 - bool IsSM3() const
+- unsigned GetNumPasses() const
+- const Vector<StringHash>& GetPassTypes() const
+- const PODVector<Pass*>& GetPasses() const
 
 Properties:
 
 - bool SM3 (readonly)
+- unsigned numPasses (readonly)
 
 <a name="Class_Terrain"></a>
 ### Terrain : Component

+ 5 - 1
Docs/ScriptAPI.dox

@@ -10313,6 +10313,8 @@ Properties:
 Methods:
 
 - Pass@ CreatePass(StringHash)
+- Pass@ GetPass(StringHash)
+- Pass@ GetSupportedPass(StringHash)
 - bool HasPass(StringHash) const
 - bool Load(File@)
 - bool Load(VectorBuffer&)
@@ -10327,7 +10329,9 @@ Properties:
 - String category // readonly
 - uint memoryUse // readonly
 - String name
-- Pass@[] passes // readonly
+- uint numPasses // readonly
+- StringHash[]@ passTypes // readonly
+- Pass@[]@ passes // readonly
 - int refs // readonly
 - bool sm3
 - StringHash type // readonly

+ 1 - 1
Source/Engine/.soversion

@@ -1 +1 @@
-0.0.30
+0.0.31