Browse Source

Travis CI: API documentation update at 2015-09-29 18:22:02 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/315115295bf36d175d30e5fbbc0c8a55f1ae6064

Message: Fix OBJ output when vertex data has all of pos/uv/normal.

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

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -6886,6 +6886,7 @@ void AddManualDrawable(Drawable);
 void ApplyAttributes();
 void ApplyAttributes();
 void DrawDebugGeometry(DebugRenderer, bool);
 void DrawDebugGeometry(DebugRenderer, bool);
 void DrawDebugGeometry(bool) const;
 void DrawDebugGeometry(bool) const;
+Array<Drawable> GetAllDrawables(uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK);
 Variant GetAttribute(const String&) const;
 Variant GetAttribute(const String&) const;
 ValueAnimation GetAttributeAnimation(const String&) const;
 ValueAnimation GetAttributeAnimation(const String&) const;
 float GetAttributeAnimationSpeed(const String&) const;
 float GetAttributeAnimationSpeed(const String&) const;
@@ -13343,6 +13344,7 @@ void UnsubscribeFromAllEventsExcept(Array<String>);
 void UnsubscribeFromEvent(Object, const String&);
 void UnsubscribeFromEvent(Object, const String&);
 void UnsubscribeFromEvent(const String&);
 void UnsubscribeFromEvent(const String&);
 void UnsubscribeFromEvents(Object);
 void UnsubscribeFromEvents(Object);
+bool WriteDrawablesToOBJ(Array<Drawable>, File, bool = false);
 
 
 // Global properties
 // Global properties
 DBAPI DBAPI;
 DBAPI DBAPI;

+ 1 - 0
Docs/LuaScriptAPI.dox

@@ -3880,6 +3880,7 @@ Methods:
 - const PODVector<OctreeQueryResult>& GetDrawables(const BoundingBox& box, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<OctreeQueryResult>& GetDrawables(const BoundingBox& box, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<OctreeQueryResult>& GetDrawables(const Frustum& frustum, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<OctreeQueryResult>& GetDrawables(const Frustum& frustum, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<OctreeQueryResult>& GetDrawables(const Sphere& sphere, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<OctreeQueryResult>& GetDrawables(const Sphere& sphere, char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
+- const PODVector<OctreeQueryResult>& GetAllDrawables(char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<RayQueryResult>& Raycast(const Ray& ray, RayQueryLevel level, float maxDistance, char drawableFlags, unsigned viewMask = DEFAULT_VIEWMASK) const
 - const PODVector<RayQueryResult>& Raycast(const Ray& ray, RayQueryLevel level, float maxDistance, char drawableFlags, unsigned viewMask = DEFAULT_VIEWMASK) const
 - RayQueryResult RaycastSingle(const Ray& ray, RayQueryLevel level, float maxDistance, char drawableFlags, unsigned viewMask = DEFAULT_VIEWMASK) const
 - RayQueryResult RaycastSingle(const Ray& ray, RayQueryLevel level, float maxDistance, char drawableFlags, unsigned viewMask = DEFAULT_VIEWMASK) const
 - unsigned GetNumLevels() const
 - unsigned GetNumLevels() const

+ 2 - 0
Docs/ScriptAPI.dox

@@ -8313,6 +8313,7 @@ Methods:
 - void ApplyAttributes()
 - void ApplyAttributes()
 - void DrawDebugGeometry(DebugRenderer@, bool)
 - void DrawDebugGeometry(DebugRenderer@, bool)
 - void DrawDebugGeometry(bool) const
 - void DrawDebugGeometry(bool) const
+- Drawable@[]@ GetAllDrawables(uint8 = DRAWABLE_ANY, uint = DEFAULT_VIEWMASK)
 - Variant GetAttribute(const String&) const
 - Variant GetAttribute(const String&) const
 - ValueAnimation@ GetAttributeAnimation(const String&) const
 - ValueAnimation@ GetAttributeAnimation(const String&) const
 - float GetAttributeAnimationSpeed(const String&) const
 - float GetAttributeAnimationSpeed(const String&) const
@@ -14006,6 +14007,7 @@ Properties:
 - void UnsubscribeFromEvent(Object@, const String&)
 - void UnsubscribeFromEvent(Object@, const String&)
 - void UnsubscribeFromEvent(const String&)
 - void UnsubscribeFromEvent(const String&)
 - void UnsubscribeFromEvents(Object@)
 - void UnsubscribeFromEvents(Object@)
+- bool WriteDrawablesToOBJ(Drawable@[]@, File@, bool = false)
 \section ScriptAPI_GlobalProperties Global properties
 \section ScriptAPI_GlobalProperties Global properties
 - DBAPI DBAPI
 - DBAPI DBAPI
 - Audio@ audio
 - Audio@ audio

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.154
+0.0.155