Browse Source

Travis CI: API documentation update at 2016-08-13 13:53:42 UTC.
[ci package]

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

Message: Start porting notes section from 1.6 to current master.

urho3d-travis-ci 9 years ago
parent
commit
4e6d9fb4f9
4 changed files with 37 additions and 11 deletions
  1. 10 2
      Docs/AngelScriptAPI.h
  2. 13 4
      Docs/LuaScriptAPI.dox
  3. 13 4
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 10 - 2
Docs/AngelScriptAPI.h

@@ -7810,6 +7810,7 @@ Array<Variant> attributeDefaults;
 /* readonly */
 /* readonly */
 Array<AttributeInfo> attributeInfos;
 Array<AttributeInfo> attributeInfos;
 Array<Variant> attributes;
 Array<Variant> attributes;
+AutoRemoveMode autoRemoveMode;
 /* readonly */
 /* readonly */
 Array<Billboard> billboards;
 Array<Billboard> billboards;
 /* readonly */
 /* readonly */
@@ -10362,7 +10363,7 @@ Array<Variant> attributeDefaults;
 /* readonly */
 /* readonly */
 Array<AttributeInfo> attributeInfos;
 Array<AttributeInfo> attributeInfos;
 Array<Variant> attributes;
 Array<Variant> attributes;
-bool autoRemove;
+AutoRemoveMode autoRemoveMode;
 /* readonly */
 /* readonly */
 String category;
 String category;
 bool enabled;
 bool enabled;
@@ -10449,7 +10450,7 @@ Array<Variant> attributeDefaults;
 /* readonly */
 /* readonly */
 Array<AttributeInfo> attributeInfos;
 Array<AttributeInfo> attributeInfos;
 Array<Variant> attributes;
 Array<Variant> attributes;
-bool autoRemove;
+AutoRemoveMode autoRemoveMode;
 /* readonly */
 /* readonly */
 String category;
 String category;
 bool enabled;
 bool enabled;
@@ -13944,6 +13945,13 @@ ABM_LERP,
 ABM_ADDITIVE,
 ABM_ADDITIVE,
 };
 };
 
 
+enum AutoRemoveMode
+{
+REMOVE_DISABLED,
+REMOVE_COMPONENT,
+REMOVE_NODE,
+};
+
 enum BlendMode
 enum BlendMode
 {
 {
 BLEND_REPLACE,
 BLEND_REPLACE,

+ 13 - 4
Docs/LuaScriptAPI.dox

@@ -4322,6 +4322,7 @@ Methods:
 - void SetNumParticles(unsigned num)
 - void SetNumParticles(unsigned num)
 - void SetEmitting(bool enable)
 - void SetEmitting(bool enable)
 - void SetSerializeParticles(bool enable)
 - void SetSerializeParticles(bool enable)
+- void SetAutoRemoveMode(AutoRemoveMode mode)
 - void ResetEmissionTimer()
 - void ResetEmissionTimer()
 - void RemoveAllParticles()
 - void RemoveAllParticles()
 - void Reset()
 - void Reset()
@@ -4330,6 +4331,7 @@ Methods:
 - unsigned GetNumParticles() const
 - unsigned GetNumParticles() const
 - bool IsEmitting() const
 - bool IsEmitting() const
 - bool GetSerializeParticles() const
 - bool GetSerializeParticles() const
+- AutoRemoveMode GetAutoRemoveMode() const
 
 
 Properties:
 Properties:
 
 
@@ -4337,6 +4339,7 @@ Properties:
 - unsigned numParticles
 - unsigned numParticles
 - bool emitting
 - bool emitting
 - bool serializeParticles
 - bool serializeParticles
+- AutoRemoveMode autoRemoveMode
 
 
 <a name="Class_ParticleEmitter2D"></a>
 <a name="Class_ParticleEmitter2D"></a>
 ### ParticleEmitter2D : Drawable2D
 ### ParticleEmitter2D : Drawable2D
@@ -5695,7 +5698,7 @@ Methods:
 - void SetGain(float gain)
 - void SetGain(float gain)
 - void SetAttenuation(float attenuation)
 - void SetAttenuation(float attenuation)
 - void SetPanning(float panning)
 - void SetPanning(float panning)
-- void SetAutoRemove(bool enable)
+- void SetAutoRemoveMode(AutoRemoveMode mode)
 - Sound* GetSound() const
 - Sound* GetSound() const
 - String GetSoundType() const
 - String GetSoundType() const
 - float GetTimePosition() const
 - float GetTimePosition() const
@@ -5703,7 +5706,7 @@ Methods:
 - float GetGain() const
 - float GetGain() const
 - float GetAttenuation() const
 - float GetAttenuation() const
 - float GetPanning() const
 - float GetPanning() const
-- bool GetAutoRemove() const
+- AutoRemoveMode GetAutoRemoveMode() const
 - bool IsPlaying() const
 - bool IsPlaying() const
 
 
 Properties:
 Properties:
@@ -5715,7 +5718,7 @@ Properties:
 - float gain
 - float gain
 - float attenuation
 - float attenuation
 - float panning
 - float panning
-- bool autoRemove
+- AutoRemoveMode autoRemoveMode
 - bool playing (readonly)
 - bool playing (readonly)
 
 
 <a name="Class_SoundSource3D"></a>
 <a name="Class_SoundSource3D"></a>
@@ -7573,6 +7576,12 @@ Properties:
 - int ABM_LERP
 - int ABM_LERP
 - int ABM_ADDITIVE
 - int ABM_ADDITIVE
 
 
+### AutoRemoveMode
+
+- int REMOVE_DISABLED
+- int REMOVE_COMPONENT
+- int REMOVE_NODE
+
 ### BlendMode
 ### BlendMode
 
 
 - int BLEND_REPLACE
 - int BLEND_REPLACE
@@ -7719,7 +7728,6 @@ Properties:
 - int FC_ROTATE_Y
 - int FC_ROTATE_Y
 - int FC_LOOKAT_XYZ
 - int FC_LOOKAT_XYZ
 - int FC_LOOKAT_Y
 - int FC_LOOKAT_Y
-- int FC_DIRECTION
 
 
 ### FaceCameraMode
 ### FaceCameraMode
 
 
@@ -7728,6 +7736,7 @@ Properties:
 - int FC_ROTATE_Y
 - int FC_ROTATE_Y
 - int FC_LOOKAT_XYZ
 - int FC_LOOKAT_XYZ
 - int FC_LOOKAT_Y
 - int FC_LOOKAT_Y
+- int FC_DIRECTION
 
 
 ### FileMode
 ### FileMode
 
 

+ 13 - 4
Docs/ScriptAPI.dox

@@ -1661,6 +1661,7 @@ namespace Urho3D
 - %Shadow %Distance : float
 - %Shadow %Distance : float
 - %Animation %LOD %Bias : float
 - %Animation %LOD %Bias : float
 - %Is %Emitting : bool
 - %Is %Emitting : bool
+- %Autoremove %Mode : int
 - %Max %Lights : int
 - %Max %Lights : int
 - %View %Mask : int
 - %View %Mask : int
 - %Light %Mask : int
 - %Light %Mask : int
@@ -1949,7 +1950,7 @@ namespace Urho3D
 - %Attenuation : float
 - %Attenuation : float
 - %Panning : float
 - %Panning : float
 - %Is %Playing : bool
 - %Is %Playing : bool
-- %Autoremove %on %Stop : bool
+- %Autoremove %Mode : int
 - %Play %Position : int
 - %Play %Position : int
 
 
 ### SoundSource3D
 ### SoundSource3D
@@ -1959,7 +1960,7 @@ namespace Urho3D
 - %Frequency : float
 - %Frequency : float
 - %Gain : float
 - %Gain : float
 - %Is %Playing : bool
 - %Is %Playing : bool
-- %Autoremove %on %Stop : bool
+- %Autoremove %Mode : int
 - %Play %Position : int
 - %Play %Position : int
 - %Near %Distance : float
 - %Near %Distance : float
 - %Far %Distance : float
 - %Far %Distance : float
@@ -9423,6 +9424,7 @@ Properties:
 - Variant[] attributeDefaults // readonly
 - Variant[] attributeDefaults // readonly
 - AttributeInfo[] attributeInfos // readonly
 - AttributeInfo[] attributeInfos // readonly
 - Variant[] attributes
 - Variant[] attributes
+- AutoRemoveMode autoRemoveMode
 - Billboard@[] billboards // readonly
 - Billboard@[] billboards // readonly
 - BoundingBox boundingBox // readonly
 - BoundingBox boundingBox // readonly
 - bool castShadows
 - bool castShadows
@@ -11708,7 +11710,7 @@ Properties:
 - Variant[] attributeDefaults // readonly
 - Variant[] attributeDefaults // readonly
 - AttributeInfo[] attributeInfos // readonly
 - AttributeInfo[] attributeInfos // readonly
 - Variant[] attributes
 - Variant[] attributes
-- bool autoRemove
+- AutoRemoveMode autoRemoveMode
 - String category // readonly
 - String category // readonly
 - bool enabled
 - bool enabled
 - bool enabledEffective // readonly
 - bool enabledEffective // readonly
@@ -11783,7 +11785,7 @@ Properties:
 - Variant[] attributeDefaults // readonly
 - Variant[] attributeDefaults // readonly
 - AttributeInfo[] attributeInfos // readonly
 - AttributeInfo[] attributeInfos // readonly
 - Variant[] attributes
 - Variant[] attributes
-- bool autoRemove
+- AutoRemoveMode autoRemoveMode
 - String category // readonly
 - String category // readonly
 - bool enabled
 - bool enabled
 - bool enabledEffective // readonly
 - bool enabledEffective // readonly
@@ -14843,6 +14845,13 @@ Properties:
 - ABM_ADDITIVE
 - ABM_ADDITIVE
 
 
 
 
+### AutoRemoveMode
+
+- REMOVE_DISABLED
+- REMOVE_COMPONENT
+- REMOVE_NODE
+
+
 ### BlendMode
 ### BlendMode
 
 
 - BLEND_REPLACE
 - BLEND_REPLACE

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.248
+0.0.249