Procházet zdrojové kódy

Travis CI: API documentation update at 2017-05-02 18:52:39 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/29ebd52590416e0bf70fb5b4271b892d64ffffb1

Message: Expose getting JSONValue keys & values as arrays in AngelScript. Closes #1924.

urho3d-travis-ci před 8 roky
rodič
revize
81fc8cb79f
3 změnil soubory, kde provedl 7 přidání a 1 odebrání
  1. 4 0
      Docs/AngelScriptAPI.h
  2. 2 0
      Docs/ScriptAPI.dox
  3. 1 1
      Source/Urho3D/.soversion

+ 4 - 0
Docs/AngelScriptAPI.h

@@ -6104,6 +6104,8 @@ bool isObject;
 /* readonly */
 bool isString;
 /* readonly */
+Array<String> keys;
+/* readonly */
 JSONNumberType numberType;
 /* readonly */
 String numberTypeName;
@@ -6113,6 +6115,8 @@ uint size;
 JSONValueType valueType;
 /* readonly */
 String valueTypeName;
+/* readonly */
+Array<JSONValue> values;
 };
 
 class JoystickState

+ 2 - 0
Docs/ScriptAPI.dox

@@ -8057,11 +8057,13 @@ Properties:
 - bool isNumber // readonly
 - bool isObject // readonly
 - bool isString // readonly
+- String[]@ keys // readonly
 - JSONNumberType numberType // readonly
 - String numberTypeName // readonly
 - uint size // readonly
 - JSONValueType valueType // readonly
 - String valueTypeName // readonly
+- JSONValue[]@ values // readonly
 
 <a name="Class_JoystickState"></a>
 

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.62
+0.1.63