Browse Source

Travis CI: API documentation update at 2017-06-18 01:22:28 UTC.
[ci package]

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

Message: Change attribute to default type & accessor. Add contributor credit.

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

+ 9 - 0
Docs/AngelScriptAPI.h

@@ -8622,6 +8622,7 @@ bool castShadows;
 String category;
 String category;
 float drawDistance;
 float drawDistance;
 ParticleEffect2D effect;
 ParticleEffect2D effect;
+bool emitting;
 bool enabled;
 bool enabled;
 /* readonly */
 /* readonly */
 bool enabledEffective;
 bool enabledEffective;
@@ -13907,6 +13908,7 @@ float doubleClickInterval;
 int dragBeginDistance;
 int dragBeginDistance;
 float dragBeginInterval;
 float dragBeginInterval;
 UIElement focusElement;
 UIElement focusElement;
+FontHintLevel fontHintLevel;
 bool forceAutoHint;
 bool forceAutoHint;
 /* readonly */
 /* readonly */
 UIElement frontElement;
 UIElement frontElement;
@@ -15547,6 +15549,13 @@ FM_FOCUSABLE,
 FM_FOCUSABLE_DEFOCUSABLE,
 FM_FOCUSABLE_DEFOCUSABLE,
 };
 };
 
 
+enum FontHintLevel
+{
+FONT_HINT_LEVEL_NONE,
+FONT_HINT_LEVEL_LIGHT,
+FONT_HINT_LEVEL_NORMAL,
+};
+
 enum FontType
 enum FontType
 {
 {
 FONT_NONE,
 FONT_NONE,

+ 11 - 0
Docs/LuaScriptAPI.dox

@@ -4568,15 +4568,18 @@ Methods:
 - void SetEffect(ParticleEffect2D* effect)
 - void SetEffect(ParticleEffect2D* effect)
 - void SetSprite(Sprite2D* sprite)
 - void SetSprite(Sprite2D* sprite)
 - void SetBlendMode(BlendMode blendMode)
 - void SetBlendMode(BlendMode blendMode)
+- void SetEmitting(bool emitting)
 - ParticleEffect2D* GetEffect() const
 - ParticleEffect2D* GetEffect() const
 - Sprite2D* GetSprite() const
 - Sprite2D* GetSprite() const
 - BlendMode GetBlendMode() const
 - BlendMode GetBlendMode() const
+- bool IsEmitting() const
 
 
 Properties:
 Properties:
 
 
 - ParticleEffect2D* effect
 - ParticleEffect2D* effect
 - Sprite2D* sprite
 - Sprite2D* sprite
 - BlendMode blendMode
 - BlendMode blendMode
+- bool emitting
 
 
 <a name="Class_Pass"></a>
 <a name="Class_Pass"></a>
 ### Pass : RefCounted
 ### Pass : RefCounted
@@ -7023,6 +7026,7 @@ Methods:
 - void SetUseScreenKeyboard(bool enable)
 - void SetUseScreenKeyboard(bool enable)
 - void SetUseMutableGlyphs(bool enable)
 - void SetUseMutableGlyphs(bool enable)
 - void SetForceAutoHint(bool enable)
 - void SetForceAutoHint(bool enable)
+- void SetFontHintLevel(FontHintLevel level)
 - void SetScale(float scale)
 - void SetScale(float scale)
 - void SetWidth(float width)
 - void SetWidth(float width)
 - void SetHeight(float height)
 - void SetHeight(float height)
@@ -7048,6 +7052,7 @@ Methods:
 - bool GetUseScreenKeyboard() const
 - bool GetUseScreenKeyboard() const
 - bool GetUseMutableGlyphs() const
 - bool GetUseMutableGlyphs() const
 - bool GetForceAutoHint() const
 - bool GetForceAutoHint() const
+- FontHintLevel GetFontHintLevel() const
 - bool HasModalElement() const
 - bool HasModalElement() const
 - bool IsDragging() const
 - bool IsDragging() const
 - float GetScale() const
 - float GetScale() const
@@ -8190,6 +8195,12 @@ Properties:
 - int FM_FOCUSABLE
 - int FM_FOCUSABLE
 - int FM_FOCUSABLE_DEFOCUSABLE
 - int FM_FOCUSABLE_DEFOCUSABLE
 
 
+### FontHintLevel
+
+- int FONT_HINT_LEVEL_NONE
+- int FONT_HINT_LEVEL_LIGHT
+- int FONT_HINT_LEVEL_NORMAL
+
 ### FontType
 ### FontType
 
 
 - int FONT_NONE
 - int FONT_NONE

+ 10 - 0
Docs/ScriptAPI.dox

@@ -1854,6 +1854,7 @@ namespace Urho3D
 - %Particle %Effect : ResourceRef
 - %Particle %Effect : ResourceRef
 - %Sprite : ResourceRef
 - %Sprite : ResourceRef
 - %Blend %Mode : int
 - %Blend %Mode : int
+- %Is %Emitting : bool
 
 
 ### PhysicsWorld
 ### PhysicsWorld
 - %Gravity : Vector3
 - %Gravity : Vector3
@@ -10224,6 +10225,7 @@ Properties:
 - String category // readonly
 - String category // readonly
 - float drawDistance
 - float drawDistance
 - ParticleEffect2D@ effect
 - ParticleEffect2D@ effect
+- bool emitting
 - bool enabled
 - bool enabled
 - bool enabledEffective // readonly
 - bool enabledEffective // readonly
 - uint id // readonly
 - uint id // readonly
@@ -14703,6 +14705,7 @@ Properties:
 - int dragBeginDistance
 - int dragBeginDistance
 - float dragBeginInterval
 - float dragBeginInterval
 - UIElement@ focusElement
 - UIElement@ focusElement
+- FontHintLevel fontHintLevel
 - bool forceAutoHint
 - bool forceAutoHint
 - UIElement@ frontElement // readonly
 - UIElement@ frontElement // readonly
 - int maxFontTextureSize
 - int maxFontTextureSize
@@ -16111,6 +16114,13 @@ Properties:
 - FM_FOCUSABLE_DEFOCUSABLE
 - FM_FOCUSABLE_DEFOCUSABLE
 
 
 
 
+### FontHintLevel
+
+- FONT_HINT_LEVEL_NONE
+- FONT_HINT_LEVEL_LIGHT
+- FONT_HINT_LEVEL_NORMAL
+
+
 ### FontType
 ### FontType
 
 
 - FONT_NONE
 - FONT_NONE

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.70
+0.1.71