Travis CI: API documentation update at 2017-08-01 09:45:24 UTC.

[ci package]

Commit: 0df18d3f54

Message: Merge remote-tracking branch 'TheComet93/iss1957'
This commit is contained in:
urho3d-travis-ci 2017-08-01 09:45:24 +00:00
Родитель 0df18d3f54
Коммит aa4c7fa9f4
4 изменённых файлов: 75 добавлений и 48 удалений

Просмотреть файл

@ -5628,7 +5628,6 @@ bool enabled;
bool enabledEffective; bool enabledEffective;
/* readonly */ /* readonly */
uint id; uint id;
bool inheritParentRotation;
/* readonly */ /* readonly */
Node node; Node node;
/* readonly */ /* readonly */
@ -5657,7 +5656,13 @@ class IKSolver
{ {
public: public:
// Methods: // Methods:
void ApplyActivePoseToScene();
void ApplyAttributes(); void ApplyAttributes();
void ApplyOriginalPoseToActivePose();
void ApplyOriginalPoseToScene();
void ApplySceneToActivePose();
void ApplySceneToInitialPose();
void CalculateJointRotations();
void DrawDebugGeometry(DebugRenderer, bool); void DrawDebugGeometry(DebugRenderer, bool);
void DrawDebugGeometry(bool); void DrawDebugGeometry(bool);
Variant GetAttribute(const String&) const; Variant GetAttribute(const String&) const;
@ -5666,6 +5671,7 @@ float GetAttributeAnimationSpeed(const String&) const;
float GetAttributeAnimationTime(const String&) const; float GetAttributeAnimationTime(const String&) const;
WrapMode GetAttributeAnimationWrapMode(const String&) const; WrapMode GetAttributeAnimationWrapMode(const String&) const;
Variant GetAttributeDefault(const String&) const; Variant GetAttributeDefault(const String&) const;
bool GetFeature(IKFeature) const;
bool GetInterceptNetworkUpdate(const String&) const; bool GetInterceptNetworkUpdate(const String&) const;
bool HasSubscribedToEvent(Object, const String&); bool HasSubscribedToEvent(Object, const String&);
bool HasSubscribedToEvent(const String&); bool HasSubscribedToEvent(const String&);
@ -5674,12 +5680,13 @@ bool Load(VectorBuffer&, bool = false);
bool LoadJSON(const JSONValue&, bool = false); bool LoadJSON(const JSONValue&, bool = false);
bool LoadXML(const XMLElement&, bool = false); bool LoadXML(const XMLElement&, bool = false);
void MarkNetworkUpdate() const; void MarkNetworkUpdate() const;
void RebuildData();
void RecalculateSegmentLengths();
void Remove(); void Remove();
void RemoveAttributeAnimation(const String&); void RemoveAttributeAnimation(const String&);
void RemoveInstanceDefault(); void RemoveInstanceDefault();
void RemoveObjectAnimation(); void RemoveObjectAnimation();
void ResetToDefault(); void ResetToDefault();
void ResetToInitialPose();
bool Save(File) const; bool Save(File) const;
bool Save(VectorBuffer&) const; bool Save(VectorBuffer&) const;
bool SaveJSON(JSONValue&) const; bool SaveJSON(JSONValue&) const;
@ -5691,9 +5698,9 @@ void SetAttributeAnimation(const String&, ValueAnimation, WrapMode = WM_LOOP, fl
void SetAttributeAnimationSpeed(const String&, float); void SetAttributeAnimationSpeed(const String&, float);
void SetAttributeAnimationTime(const String&, float); void SetAttributeAnimationTime(const String&, float);
void SetAttributeAnimationWrapMode(const String&, WrapMode); void SetAttributeAnimationWrapMode(const String&, WrapMode);
void SetFeature(IKFeature, bool);
void SetInterceptNetworkUpdate(const String&, bool); void SetInterceptNetworkUpdate(const String&, bool);
void Solve(); void Solve();
void UpdateInitialPose();
// Properties: // Properties:
IKAlgorithm algorithm; IKAlgorithm algorithm;
@ -5703,11 +5710,8 @@ Array<Variant> attributeDefaults;
/* readonly */ /* readonly */
Array<AttributeInfo> attributeInfos; Array<AttributeInfo> attributeInfos;
Array<Variant> attributes; Array<Variant> attributes;
bool autoSolve;
bool boneRotations;
/* readonly */ /* readonly */
String category; String category;
bool continuousSolving;
bool enabled; bool enabled;
/* readonly */ /* readonly */
bool enabledEffective; bool enabledEffective;
@ -5721,14 +5725,12 @@ uint numAttributes;
ObjectAnimation objectAnimation; ObjectAnimation objectAnimation;
/* readonly */ /* readonly */
int refs; int refs;
bool targetRotation;
bool temporary; bool temporary;
float tolerance; float tolerance;
/* readonly */ /* readonly */
StringHash type; StringHash type;
/* readonly */ /* readonly */
String typeName; String typeName;
bool updatePose;
/* readonly */ /* readonly */
int weakRefs; int weakRefs;
}; };
@ -15604,9 +15606,22 @@ HTTP_CLOSED,
enum IKAlgorithm enum IKAlgorithm
{ {
ONE_BONE,
TWO_BONE,
FABRIK, FABRIK,
}; };
enum IKFeature
{
JOINT_ROTATIONS,
TARGET_ROTATIONS,
UPDATE_ORIGINAL_POSE,
UPDATE_ACTIVE_POSE,
USE_ORIGINAL_POSE,
CONSTRAINTS,
AUTO_SOLVE,
};
enum InterpMethod enum InterpMethod
{ {
IM_NONE, IM_NONE,

Просмотреть файл

@ -2766,8 +2766,6 @@ Methods:
- void SetRotationDecay(float decay) - void SetRotationDecay(float decay)
- bool WeightedNlerpEnabled() const - bool WeightedNlerpEnabled() const
- void EnableWeightedNlerp(bool enable) - void EnableWeightedNlerp(bool enable)
- bool InheritParentRotationEnabled() const
- void EnableInheritParentRotation(bool enable)
Properties: Properties:
@ -2785,26 +2783,17 @@ Properties:
Methods: Methods:
- IKSolver::Algorithm GetAlgorithm() const - bool GetFeature(IKSolver::Feature feature) const
- void SetAlgorithm(IKSolver::Algorithm algorithm) - void SetFeature(IKSolver::Feature feature, bool enable)
- unsigned GetMaximumIterations() const - void RebuildData()
- void SetMaximumIterations(unsigned iterations) - void RecalculateSegmentLengths()
- float GetTolerance() const - void CalculateJointRotations()
- void SetTolerance(float tolerance)
- bool BoneRotationsEnabled() const
- void EnableBoneRotations(bool enable)
- bool TargetRotationEnabled() const
- void EnableTargetRotation(bool enable)
- bool ContinuousSolvingEnabled() const
- void EnableContinuousSolving(bool enable)
- bool UpdatePoseEnabled() const
- void EnableUpdatePose(bool enable)
- bool AutoSolveEnabled() const
- void EnableAutoSolve(bool enable)
- void Solve() - void Solve()
- void ResetToInitialPose() - void ApplyOriginalPoseToScene()
- void UpdateInitialPose() - void ApplySceneToOriginalPose()
- void MarkSolverTreeDirty() - void ApplyActivePoseToScene()
- void ApplySceneToActivePose()
- void ApplyOriginalPoseToActivePose()
- void DrawDebugGeometry(bool depthTest) - void DrawDebugGeometry(bool depthTest)
Properties: Properties:
@ -8018,6 +8007,8 @@ Properties:
### Algorithm ### Algorithm
- int ONE_BONE
- int TWO_BONE
- int FABRIK - int FABRIK
### AnimationBlendMode ### AnimationBlendMode
@ -8190,6 +8181,16 @@ Properties:
- int FC_LOOKAT_MIXED - int FC_LOOKAT_MIXED
- int FC_DIRECTION - int FC_DIRECTION
### Feature
- int JOINT_ROTATIONS
- int TARGET_ROTATIONS
- int UPDATE_ORIGINAL_POSE
- int UPDATE_ACTIVE_POSE
- int USE_ORIGINAL_POSE
- int CONSTRAINTS
- int AUTO_SOLVE
### FileMode ### FileMode
- int FILE_READ - int FILE_READ

Просмотреть файл

@ -1536,11 +1536,6 @@ namespace Urho3D
- %Max %Layers : int - %Max %Layers : int
- %Draw %Obstacles : bool - %Draw %Obstacles : bool
### IKConstraint
- %Stiffness : float
- %Stretchiness : float
- %Length %Constraints : Vector2
### IKEffector ### IKEffector
- %Target %Node : String - %Target %Node : String
- %Chain %Length : int - %Chain %Length : int
@ -1550,16 +1545,17 @@ namespace Urho3D
- %Rotation %Weight : float - %Rotation %Weight : float
- %Rotation %Decay : float - %Rotation %Decay : float
- %Nlerp %Weight : bool - %Nlerp %Weight : bool
- %Inherit %Parent %Rotation : bool
### IKSolver ### IKSolver
- %Algorithm : int - %Algorithm : int
- %Max %Iterations : int - %Max %Iterations : int
- %Convergence %Tolerance : float - %Convergence %Tolerance : float
- %Bone %Rotations : bool - %Joint %Rotations : bool
- %Target %Rotation : bool - %Target %Rotations : bool
- %Continuous %Solving : bool - %Update %Original %Pose : bool
- %Update %Pose : bool - %Update %Active %Pose : bool
- %Use %Original %Pose : bool
- %Enable %Constraints : bool
- %Auto %Solve : bool - %Auto %Solve : bool
### Light ### Light
@ -7673,7 +7669,6 @@ Properties:
- bool enabled - bool enabled
- bool enabledEffective // readonly - bool enabledEffective // readonly
- uint id // readonly - uint id // readonly
- bool inheritParentRotation
- Node@ node // readonly - Node@ node // readonly
- uint numAttributes // readonly - uint numAttributes // readonly
- ObjectAnimation@ objectAnimation - ObjectAnimation@ objectAnimation
@ -7697,7 +7692,13 @@ Properties:
Methods: Methods:
- void ApplyActivePoseToScene()
- void ApplyAttributes() - void ApplyAttributes()
- void ApplyOriginalPoseToActivePose()
- void ApplyOriginalPoseToScene()
- void ApplySceneToActivePose()
- void ApplySceneToInitialPose()
- void CalculateJointRotations()
- void DrawDebugGeometry(DebugRenderer@, bool) - void DrawDebugGeometry(DebugRenderer@, bool)
- void DrawDebugGeometry(bool) - void DrawDebugGeometry(bool)
- Variant GetAttribute(const String&) const - Variant GetAttribute(const String&) const
@ -7706,6 +7707,7 @@ Methods:
- float GetAttributeAnimationTime(const String&) const - float GetAttributeAnimationTime(const String&) const
- WrapMode GetAttributeAnimationWrapMode(const String&) const - WrapMode GetAttributeAnimationWrapMode(const String&) const
- Variant GetAttributeDefault(const String&) const - Variant GetAttributeDefault(const String&) const
- bool GetFeature(IKFeature) const
- bool GetInterceptNetworkUpdate(const String&) const - bool GetInterceptNetworkUpdate(const String&) const
- bool HasSubscribedToEvent(Object@, const String&) - bool HasSubscribedToEvent(Object@, const String&)
- bool HasSubscribedToEvent(const String&) - bool HasSubscribedToEvent(const String&)
@ -7714,12 +7716,13 @@ Methods:
- bool LoadJSON(const JSONValue&, bool = false) - bool LoadJSON(const JSONValue&, bool = false)
- bool LoadXML(const XMLElement&, bool = false) - bool LoadXML(const XMLElement&, bool = false)
- void MarkNetworkUpdate() const - void MarkNetworkUpdate() const
- void RebuildData()
- void RecalculateSegmentLengths()
- void Remove() - void Remove()
- void RemoveAttributeAnimation(const String&) - void RemoveAttributeAnimation(const String&)
- void RemoveInstanceDefault() - void RemoveInstanceDefault()
- void RemoveObjectAnimation() - void RemoveObjectAnimation()
- void ResetToDefault() - void ResetToDefault()
- void ResetToInitialPose()
- bool Save(File@) const - bool Save(File@) const
- bool Save(VectorBuffer&) const - bool Save(VectorBuffer&) const
- bool SaveJSON(JSONValue&) const - bool SaveJSON(JSONValue&) const
@ -7731,9 +7734,9 @@ Methods:
- void SetAttributeAnimationSpeed(const String&, float) - void SetAttributeAnimationSpeed(const String&, float)
- void SetAttributeAnimationTime(const String&, float) - void SetAttributeAnimationTime(const String&, float)
- void SetAttributeAnimationWrapMode(const String&, WrapMode) - void SetAttributeAnimationWrapMode(const String&, WrapMode)
- void SetFeature(IKFeature, bool)
- void SetInterceptNetworkUpdate(const String&, bool) - void SetInterceptNetworkUpdate(const String&, bool)
- void Solve() - void Solve()
- void UpdateInitialPose()
Properties: Properties:
@ -7742,10 +7745,7 @@ Properties:
- Variant[] attributeDefaults // readonly - Variant[] attributeDefaults // readonly
- AttributeInfo[] attributeInfos // readonly - AttributeInfo[] attributeInfos // readonly
- Variant[] attributes - Variant[] attributes
- bool autoSolve
- bool boneRotations
- String category // readonly - String category // readonly
- bool continuousSolving
- bool enabled - bool enabled
- bool enabledEffective // readonly - bool enabledEffective // readonly
- uint id // readonly - uint id // readonly
@ -7754,12 +7754,10 @@ Properties:
- uint numAttributes // readonly - uint numAttributes // readonly
- ObjectAnimation@ objectAnimation - ObjectAnimation@ objectAnimation
- int refs // readonly - int refs // readonly
- bool targetRotation
- bool temporary - bool temporary
- float tolerance - float tolerance
- StringHash type // readonly - StringHash type // readonly
- String typeName // readonly - String typeName // readonly
- bool updatePose
- int weakRefs // readonly - int weakRefs // readonly
<a name="Class_Image"></a> <a name="Class_Image"></a>
@ -16165,9 +16163,22 @@ Properties:
### IKAlgorithm ### IKAlgorithm
- ONE_BONE
- TWO_BONE
- FABRIK - FABRIK
### IKFeature
- JOINT_ROTATIONS
- TARGET_ROTATIONS
- UPDATE_ORIGINAL_POSE
- UPDATE_ACTIVE_POSE
- USE_ORIGINAL_POSE
- CONSTRAINTS
- AUTO_SOLVE
### InterpMethod ### InterpMethod
- IM_NONE - IM_NONE

Просмотреть файл

@ -1 +1 @@
0.1.82 0.1.83