-
Notifications
You must be signed in to change notification settings - Fork 16
/
example.api.json
292 lines (292 loc) · 8.08 KB
/
example.api.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
{
"name": "",
"type": "RootDoc",
"members": [
{
"name": "Simple",
"type": "ClassDoc",
"brief": "",
"description": "",
"members": [
{
"name": "add",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>add an object to be culled\nNOTE: for implementation, add and remove uses this.lists[0]</p>"
},
{
"name": "addList",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>add an array of objects to be culled, eg: <code>simple.addList(container.children)</code></p>"
},
{
"name": "constructor",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>Creates a simple cull\nNote, options.dirtyTest defaults to false. Set to true for much better performance--this requires\nadditional work to ensure displayObject.dirty is set when objects change)</p>"
},
{
"name": "cull",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>cull the items in the list by changing the object.visible</p>"
},
{
"name": "query",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>returns an array of objects contained within bounding box</p>"
},
{
"name": "queryCallback",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>iterates through objects contained within bounding box\nstops iterating if the callback returns true</p>"
},
{
"name": "remove",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>remove an object added by add()\nNOTE: for implementation, add and remove uses this.lists[0]</p>"
},
{
"name": "removeList",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>remove an array added by addList()</p>"
},
{
"name": "stats",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>get stats (only updated after update() is called)</p>"
},
{
"name": "updateObject",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>update the has of an object\nautomatically called from updateObjects()</p>"
},
{
"name": "updateObjects",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>update the AABB for all objects\nautomatically called from update() when calculatePIXI=true and skipUpdate=false</p>"
}
]
},
{
"name": "SpatialHash",
"type": "ClassDoc",
"brief": "",
"description": "",
"members": [
{
"name": "dirtyTest",
"type": "PropertyDoc",
"access": "public",
"scope": "instance",
"brief": "<p>dirtyTest toggle</p>",
"description": ""
},
{
"name": "simpleTest",
"type": "PropertyDoc",
"access": "public",
"scope": "instance",
"brief": "<p>simpleTest toggle</p>",
"description": ""
},
{
"name": "containers",
"type": "PropertyDoc",
"access": "protected",
"scope": "instance",
"brief": "<p>array of PIXI.Containers added using addContainer()</p>",
"description": ""
},
{
"name": "elements",
"type": "PropertyDoc",
"access": "protected",
"scope": "instance",
"brief": "<p>array of DisplayObjects added using add()</p>",
"description": ""
},
{
"name": "add",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>add an object to be culled\nside effect: adds object.spatialHashes to track existing hashes</p>"
},
{
"name": "addContainer",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>add an array of objects to be culled</p>"
},
{
"name": "constructor",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>creates a spatial-hash cull\nNote, options.dirtyTest defaults to false. To greatly improve performance set to true and set\ndisplayObject.dirty=true when the displayObject changes)</p>"
},
{
"name": "cull",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>update the hashes and cull the items in the list</p>"
},
{
"name": "getAverageSize",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>helper function to evaluate hash table</p>"
},
{
"name": "getBounds",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>gets hash bounds</p>"
},
{
"name": "getBuckets",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>returns an array of buckets with >= minimum of objects in each bucket</p>"
},
{
"name": "getLargest",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>helper function to evaluate the hash table</p>"
},
{
"name": "getNumberOfBuckets",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>helper function to evaluate hash table</p>"
},
{
"name": "getSparseness",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>helper function to evaluate the hash table</p>"
},
{
"name": "getWorldBounds",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>gets quadrant bounds</p>"
},
{
"name": "insert",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>insert object into the spatial hash\nautomatically called from updateObject()</p>"
},
{
"name": "invisible",
"type": "MethodDoc",
"scope": "instance",
"brief": "<p>set all objects in hash to visible=false</p>",
"description": ""
},
{
"name": "neighbors",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>get all neighbors that share the same hash as object</p>"
},
{
"name": "query",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>returns an array of objects contained within bounding box</p>"
},
{
"name": "queryCallback",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>iterates through objects contained within bounding box\nstops iterating if the callback returns true</p>"
},
{
"name": "queryCallbackAll",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>returns an array of objects contained within bounding box with a callback on each non-culled object\nthis function is different from queryCallback, which cancels the query when a callback returns true</p>"
},
{
"name": "remove",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>remove an object added by add()</p>"
},
{
"name": "removeContainer",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>remove an array added by addContainer()</p>"
},
{
"name": "removeFromHash",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>removes object from the hash table\nshould be called when removing an object\nautomatically called from updateObject()</p>"
},
{
"name": "stats",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>Get stats</p>"
},
{
"name": "updateObject",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>update the has of an object\nautomatically called from updateObjects()</p>"
},
{
"name": "updateObjects",
"type": "MethodDoc",
"scope": "instance",
"brief": "",
"description": "<p>update the hashes for all objects\nautomatically called from update() when skipUpdate=false</p>"
}
]
}
]
}