Browse Source

Travis CI: API documentation update at 2016-03-18 02:19:25 UTC.
[ci package]

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

Message: Added missing include.

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

+ 4 - 0
Docs/AngelScriptAPI.h

@@ -584,7 +584,11 @@ class Audio
 bool HasMasterGain(const String&) const;
 bool HasMasterGain(const String&) const;
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool HasSubscribedToEvent(const String&);
+bool IsSoundTypePaused(const String&);
+void PauseSoundType(const String&);
 bool Play();
 bool Play();
+void ResumeAll();
+void ResumeSoundType(const String&);
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 void SetMode(int, int, bool, bool = true);
 void SetMode(int, int, bool, bool = true);
 void Stop();
 void Stop();

+ 4 - 0
Docs/LuaScriptAPI.dox

@@ -522,6 +522,9 @@ Methods:
 - bool Play()
 - bool Play()
 - void Stop()
 - void Stop()
 - void SetMasterGain(const String type, float gain)
 - void SetMasterGain(const String type, float gain)
+- void PauseSoundType(const String type)
+- void ResumeSoundType(const String type)
+- void ResumeAll()
 - void SetListener(SoundListener* listener)
 - void SetListener(SoundListener* listener)
 - void StopSound(Sound* sound)
 - void StopSound(Sound* sound)
 - unsigned GetSampleSize() const
 - unsigned GetSampleSize() const
@@ -532,6 +535,7 @@ Methods:
 - bool IsInitialized() const
 - bool IsInitialized() const
 - bool HasMasterGain(const String type) const
 - bool HasMasterGain(const String type) const
 - float GetMasterGain(const String type) const
 - float GetMasterGain(const String type) const
+- bool IsSoundTypePaused(const String type) const
 - SoundListener* GetListener() const
 - SoundListener* GetListener() const
 - const PODVector<SoundSource*>& GetSoundSources() const
 - const PODVector<SoundSource*>& GetSoundSources() const
 - void AddSoundSource(SoundSource* soundSource)
 - void AddSoundSource(SoundSource* soundSource)

+ 4 - 0
Docs/ScriptAPI.dox

@@ -2995,7 +2995,11 @@ Methods:
 - bool HasMasterGain(const String&) const
 - bool HasMasterGain(const String&) const
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool HasSubscribedToEvent(const String&)
+- bool IsSoundTypePaused(const String&)
+- void PauseSoundType(const String&)
 - bool Play()
 - bool Play()
+- void ResumeAll()
+- void ResumeSoundType(const String&)
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - void SetMode(int, int, bool, bool = true)
 - void SetMode(int, int, bool, bool = true)
 - void Stop()
 - void Stop()

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.202
+0.0.203