Explorar el Código

Travis CI: API documentation update at 2016-05-09 20:02:33 UTC.
[ci package]

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

Message: Add the interpolation mode IM_NONE to ValueAnimation. Add animating UI element to LightAnimation example. Add ResourceRef constructor that takes type & name as strings for easier script bindings.

urho3d-travis-ci hace 9 años
padre
commit
1a060523e0
Se han modificado 4 ficheros con 6 adiciones y 1 borrados
  1. 1 0
      Docs/AngelScriptAPI.h
  2. 3 0
      Docs/LuaScriptAPI.dox
  3. 1 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 1 - 0
Docs/AngelScriptAPI.h

@@ -13918,6 +13918,7 @@ HTTP_CLOSED,
 
 enum InterpMethod
 {
+IM_NONE,
 IM_LINEAR,
 IM_SPLINE,
 };

+ 3 - 0
Docs/LuaScriptAPI.dox

@@ -4952,6 +4952,8 @@ Methods:
 - ResourceRef* new(StringHash type)
 - ResourceRef(StringHash type, String name) (GC)
 - ResourceRef* new(StringHash type, String name)
+- ResourceRef(String type, String name) (GC)
+- ResourceRef* new(String type, String name)
 - ResourceRef(const ResourceRef& rhs) (GC)
 - ResourceRef* new(const ResourceRef& rhs)
 - void delete()
@@ -7536,6 +7538,7 @@ Properties:
 
 ### InterpMethod
 
+- int IM_NONE
 - int IM_LINEAR
 - int IM_SPLINE
 

+ 1 - 0
Docs/ScriptAPI.dox

@@ -14773,6 +14773,7 @@ Properties:
 
 ### InterpMethod
 
+- IM_NONE
 - IM_LINEAR
 - IM_SPLINE
 

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.219
+0.0.220