Skip to content

Commit 34e24c3

Browse files
Site changes [skip-ci]
1 parent 90ba12c commit 34e24c3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3370
-1361
lines changed

_data/ref/beta/array-cpp.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@
126126
"notes": [],
127127
"parameters": [
128128
{
129-
"doc": "[type:]",
129+
"doc": "C array to count",
130130
"is_optional": "False",
131-
"name": "Array",
131+
"name": "A",
132132
"types": [
133-
""
133+
"T"
134134
]
135135
}
136136
],
@@ -163,7 +163,7 @@
163163
{
164164
"doc": "Contained type, must obey memcpy semantics",
165165
"name": "T",
166-
"type": "typename T"
166+
"type": ""
167167
}
168168
],
169169
"type": "CLASS"
@@ -287,7 +287,7 @@
287287
"doc": "true if the array is empty",
288288
"name": "boolean",
289289
"types": [
290-
"boolean"
290+
"bool"
291291
]
292292
}
293293
],
@@ -466,7 +466,7 @@
466466
"doc": "true if the array is full",
467467
"name": "boolean",
468468
"types": [
469-
"boolean"
469+
"bool"
470470
]
471471
}
472472
],
@@ -488,15 +488,15 @@
488488
"is_optional": "False",
489489
"name": "fn",
490490
"types": [
491-
""
491+
"void*"
492492
]
493493
},
494494
{
495495
"doc": "user defined context that will be passed in with each callback",
496496
"is_optional": "False",
497497
"name": "ctx",
498498
"types": [
499-
""
499+
"void*"
500500
]
501501
}
502502
],
@@ -647,7 +647,7 @@
647647
"is_optional": "False",
648648
"name": "array",
649649
"types": [
650-
"const T&"
650+
"const T*"
651651
]
652652
},
653653
{
@@ -773,7 +773,7 @@
773773
"is_optional": "False",
774774
"name": "rhs",
775775
"types": [
776-
"dmArray`<T>`&"
776+
"dmArray<T>&"
777777
]
778778
}
779779
],

_data/ref/beta/b2d-lua.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
{
22
"elements": [
3+
{
4+
"brief": "Box2D body",
5+
"description": "Box2D body",
6+
"error": "",
7+
"examples": "",
8+
"language": "",
9+
"members": [],
10+
"name": "b2Body",
11+
"notes": [],
12+
"parameters": [
13+
{
14+
"doc": "",
15+
"is_optional": "False",
16+
"name": "value",
17+
"types": [
18+
"userdata"
19+
]
20+
}
21+
],
22+
"replaces": "",
23+
"returnvalues": [],
24+
"tparams": [],
25+
"type": "TYPEDEF"
26+
},
327
{
428
"brief": "Get the Box2D body from a collision object",
529
"description": "Get the Box2D body from a collision object",
@@ -56,6 +80,30 @@
5680
],
5781
"tparams": [],
5882
"type": "FUNCTION"
83+
},
84+
{
85+
"brief": "Box2D world",
86+
"description": "Box2D world",
87+
"error": "",
88+
"examples": "",
89+
"language": "",
90+
"members": [],
91+
"name": "b2World",
92+
"notes": [],
93+
"parameters": [
94+
{
95+
"doc": "",
96+
"is_optional": "False",
97+
"name": "value",
98+
"types": [
99+
"userdata"
100+
]
101+
}
102+
],
103+
"replaces": "",
104+
"returnvalues": [],
105+
"tparams": [],
106+
"type": "TYPEDEF"
59107
}
60108
],
61109
"info": {

_data/ref/beta/b2d.body-lua.json

Lines changed: 61 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
{
22
"elements": [
3+
{
4+
"brief": "Box2D body",
5+
"description": "Box2D body",
6+
"error": "",
7+
"examples": "",
8+
"language": "",
9+
"members": [],
10+
"name": "b2Body",
11+
"notes": [],
12+
"parameters": [
13+
{
14+
"doc": "",
15+
"is_optional": "False",
16+
"name": "value",
17+
"types": [
18+
"userdata"
19+
]
20+
}
21+
],
22+
"replaces": "",
23+
"returnvalues": [],
24+
"tparams": [],
25+
"type": "TYPEDEF"
26+
},
327
{
428
"brief": "Apply an angular impulse.",
529
"description": "Apply an angular impulse.",
@@ -189,7 +213,7 @@
189213
"replaces": "",
190214
"returnvalues": [],
191215
"tparams": [],
192-
"type": "VARIABLE"
216+
"type": "CONSTANT"
193217
},
194218
{
195219
"brief": "Kinematic body",
@@ -204,7 +228,7 @@
204228
"replaces": "",
205229
"returnvalues": [],
206230
"tparams": [],
207-
"type": "VARIABLE"
231+
"type": "CONSTANT"
208232
},
209233
{
210234
"brief": "Static (immovable) body",
@@ -219,7 +243,7 @@
219243
"replaces": "",
220244
"returnvalues": [],
221245
"tparams": [],
222-
"type": "VARIABLE"
246+
"type": "CONSTANT"
223247
},
224248
{
225249
"brief": "You can disable sleeping on this body. If you disable sleeping, the body will be woken.",
@@ -244,7 +268,7 @@
244268
"is_optional": "False",
245269
"name": "enable",
246270
"types": [
247-
"bool"
271+
"boolean"
248272
]
249273
}
250274
],
@@ -934,7 +958,7 @@
934958
"doc": "is the body active",
935959
"name": "enabled",
936960
"types": [
937-
"bool"
961+
"boolean"
938962
]
939963
}
940964
],
@@ -966,7 +990,7 @@
966990
"doc": "true if the body is awake, false if it's sleeping.",
967991
"name": "enabled",
968992
"types": [
969-
"bool"
993+
"boolean"
970994
]
971995
}
972996
],
@@ -998,7 +1022,7 @@
9981022
"doc": "true if the body is in bullet mode",
9991023
"name": "enabled",
10001024
"types": [
1001-
"bool"
1025+
"boolean"
10021026
]
10031027
}
10041028
],
@@ -1030,7 +1054,7 @@
10301054
"doc": "is the rotation fixed",
10311055
"name": "enabled",
10321056
"types": [
1033-
"bool"
1057+
"boolean"
10341058
]
10351059
}
10361060
],
@@ -1062,7 +1086,7 @@
10621086
"doc": "true if the body is allowed to sleep",
10631087
"name": "enabled",
10641088
"types": [
1065-
"bool"
1089+
"boolean"
10661090
]
10671091
}
10681092
],
@@ -1116,7 +1140,7 @@
11161140
"is_optional": "False",
11171141
"name": "enable",
11181142
"types": [
1119-
"bool"
1143+
"boolean"
11201144
]
11211145
}
11221146
],
@@ -1212,7 +1236,7 @@
12121236
"is_optional": "False",
12131237
"name": "enable",
12141238
"types": [
1215-
"bool"
1239+
"boolean"
12161240
]
12171241
}
12181242
],
@@ -1244,7 +1268,7 @@
12441268
"is_optional": "False",
12451269
"name": "enable",
12461270
"types": [
1247-
"bool"
1271+
"boolean"
12481272
]
12491273
}
12501274
],
@@ -1276,7 +1300,7 @@
12761300
"is_optional": "False",
12771301
"name": "enable",
12781302
"types": [
1279-
"bool"
1303+
"boolean"
12801304
]
12811305
}
12821306
],
@@ -1452,6 +1476,30 @@
14521476
"returnvalues": [],
14531477
"tparams": [],
14541478
"type": "FUNCTION"
1479+
},
1480+
{
1481+
"brief": "Box2D world",
1482+
"description": "Box2D world",
1483+
"error": "",
1484+
"examples": "",
1485+
"language": "",
1486+
"members": [],
1487+
"name": "b2World",
1488+
"notes": [],
1489+
"parameters": [
1490+
{
1491+
"doc": "",
1492+
"is_optional": "False",
1493+
"name": "value",
1494+
"types": [
1495+
"userdata"
1496+
]
1497+
}
1498+
],
1499+
"replaces": "",
1500+
"returnvalues": [],
1501+
"tparams": [],
1502+
"type": "TYPEDEF"
14551503
}
14561504
],
14571505
"info": {

0 commit comments

Comments
 (0)