Browse Source

Travis CI: API documentation update at 2015-07-14 19:35:54 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/52885a22c4790dc704f3b02fa083d116fe188b2f

Message: Clean up Spline code, add support for Catmull-Rom interpolation of other values than Vector3, and fix out of bounds array access in Catmull-Rom interpolation. Add linear interpolation mode. Add script bindings of new interpolation mode enums. Closes #772. Closes #773.

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

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -12764,6 +12764,8 @@ IM_SPLINE,
 enum InterpolationMode
 enum InterpolationMode
 {
 {
 BEZIER_CURVE,
 BEZIER_CURVE,
+CATMULL_ROM_CURVE,
+LINEAR_CURVE,
 };
 };
 
 
 enum Intersection
 enum Intersection

+ 2 - 0
Docs/LuaScriptAPI.dox

@@ -7298,6 +7298,8 @@ Properties:
 ### InterpolationMode
 ### InterpolationMode
 
 
 - int BEZIER_CURVE
 - int BEZIER_CURVE
+- int CATMULL_ROM_CURVE
+- int LINEAR_CURVE
 
 
 ### Intersection
 ### Intersection
 
 

+ 2 - 0
Docs/ScriptAPI.dox

@@ -13429,6 +13429,8 @@ Properties:
 ### InterpolationMode
 ### InterpolationMode
 
 
 - BEZIER_CURVE
 - BEZIER_CURVE
+- CATMULL_ROM_CURVE
+- LINEAR_CURVE
 
 
 
 
 ### Intersection
 ### Intersection

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.117
+0.0.118