Browse Source

Travis CI: API documentation update at 2014-04-15 15:24:02 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
f2f704f050
3 changed files with 9 additions and 3 deletions
  1. 3 1
      Docs/AngelScriptAPI.h
  2. 3 1
      Docs/LuaScriptAPI.dox
  3. 3 1
      Docs/ScriptAPI.dox

+ 3 - 1
Docs/AngelScriptAPI.h

@@ -4264,7 +4264,7 @@ int width;
 class Input
 {
 // Methods:
-uint AddScreenJoystick(bool = false, XMLFile = null, XMLFile = null);
+uint AddScreenJoystick(XMLFile = null, XMLFile = null);
 void CloseJoystick(uint);
 bool DetectJoysticks();
 int GetKeyFromName(const String&) const;
@@ -4274,6 +4274,7 @@ int GetScancodeFromKey(int) const;
 int GetScancodeFromName(const String&) const;
 String GetScancodeName(int) const;
 bool OpenJoystick(uint);
+bool RemoveScreenJoystick(uint);
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 
 // Properties:
@@ -9792,6 +9793,7 @@ IntVector2 lastPosition;
 IntVector2 position;
 float pressure;
 int touchID;
+WeakHandle touchedElement;
 };
 
 class UI

+ 3 - 1
Docs/LuaScriptAPI.dox

@@ -2044,7 +2044,8 @@ Methods:
 - bool OpenJoystick(unsigned index)
 - void CloseJoystick(unsigned index)
 - bool DetectJoysticks()
-- unsigned AddScreenJoystick(bool injectAsKeyEvents = false, XMLFile* layoutFile = 0, XMLFile* styleFile = 0)
+- unsigned AddScreenJoystick(XMLFile* layoutFile = 0, XMLFile* styleFile = 0)
+- bool RemoveScreenJoystick(unsigned index)
 - void SetScreenKeyboardVisible(bool enable)
 - int GetKeyFromName(const String name) const
 - int GetKeyFromScancode(int scancode) const
@@ -4974,6 +4975,7 @@ Properties:
 - IntVector2 lastPosition
 - IntVector2 delta
 - float pressure
+- WeakPtr<UIElement> touchedElement
 
 ### UI : Object
 

+ 3 - 1
Docs/ScriptAPI.dox

@@ -5542,7 +5542,7 @@ Properties:
 
 Methods:
 
-- uint AddScreenJoystick(bool = false, XMLFile@ = null, XMLFile@ = null)
+- uint AddScreenJoystick(XMLFile@ = null, XMLFile@ = null)
 - void CloseJoystick(uint)
 - bool DetectJoysticks()
 - int GetKeyFromName(const String&) const
@@ -5552,6 +5552,7 @@ Methods:
 - int GetScancodeFromName(const String&) const
 - String GetScancodeName(int) const
 - bool OpenJoystick(uint)
+- bool RemoveScreenJoystick(uint)
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 
 Properties:
@@ -10202,6 +10203,7 @@ Properties:
 - IntVector2 position
 - float pressure
 - int touchID
+- WeakHandle touchedElement
 
 
 ### UI