-
Notifications
You must be signed in to change notification settings - Fork 3
/
examples-info.json
402 lines (402 loc) · 7.83 KB
/
examples-info.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
[
{
"group": "Hello World",
"name": "PIXI example",
"file_name": "01_pixi_scene",
"object": "PixiHelloWorld"
},
{
"group": "Hello World",
"name": "ThreeJS example",
"file_name": "01_threejs_scene",
"object": "ThreeHelloWorld"
},
{
"group": "PixiJS Introduction",
"name": "Button example",
"file_name": "02_button",
"object": "Button"
},
{
"group": "PixiJS Introduction",
"name": "Loop example",
"file_name": "02_loop",
"object": "Loop"
},
{
"group": "PixiJS Introduction",
"name": "Particles example",
"file_name": "02_particles",
"object": "Particles"
},
{
"group": "PixiJS Introduction",
"name": "Primitives Examples",
"file_name": "02_primitives",
"object": "Primitives"
},
{
"group": "PixiJS Introduction",
"name": "Sound example",
"file_name": "02_sound",
"object": "Sound"
},
{
"group": "PixiJS Introduction",
"name": "ThreeJS Sprites",
"file_name": "02_text",
"object": "Sprites"
},
{
"group": "PixiJS Introduction",
"name": "Text example",
"file_name": "02_bitmap_text",
"object": "Text"
},
{
"group": "PixiJS Introduction",
"name": "Animation example",
"file_name": "02_animation",
"object": "PIXIAnimation"
},
{
"group": "ThreeJS Introduction",
"name": "ThreeJS Simple Scene",
"file_name": "02_scene",
"object": "Scene"
},
{
"group": "ThreeJS Introduction",
"name": "ThreeJS Sprites",
"file_name": "02_sprites",
"object": "Sprites"
},
{
"group": "Components",
"name": "Components example",
"file_name": "03_squares",
"object": "Squares"
},
{
"group": "Components",
"name": "Graphics",
"file_name": "03_graphics",
"object": "Graphics"
},
{
"group": "Components",
"name": "ECS Animation",
"file_name": "03_animation",
"object": "ECSAnimation"
},
{
"group": "Space",
"name": "Normal Distribution",
"file_name": "04_distribution_normal",
"object": "DistributionNormal"
},
{
"group": "Space",
"name": "Normal Distribution",
"file_name": "04_distribution_uniform",
"object": "DistributionUniform"
},
{
"group": "Space",
"name": "Pathfinding",
"file_name": "04_pathfinding",
"object": "Pathfinding"
},
{
"group": "Space",
"name": "Path Exploring",
"file_name": "04_pathexploring",
"object": "PathExplorer"
},
{
"group": "Space",
"name": "Perlin Noise",
"file_name": "04_perlin",
"object": "PerlinNoise"
},
{
"group": "Space",
"name": "QuadTree",
"file_name": "04_quadtree",
"object": "QuadTree"
},
{
"group": "Dynamics",
"name": "Missile",
"file_name": "05_missile",
"object": "Missile"
},
{
"group": "Dynamics",
"name": "Rotation",
"file_name": "05_rotation",
"object": "Rotation"
},
{
"group": "Dynamics",
"name": "Ackermann Steering: Simple",
"file_name": "05_ackermann_simple",
"object": "AckermannSimple"
},
{
"group": "Dynamics",
"name": "Ackermann Steering: Advanced",
"file_name": "05_ackermann_advanced",
"object": "AckermannAdvanced"
},
{
"group": "Dynamics",
"name": "Steering Seek",
"file_name": "05_steering_seek",
"object": "SteeringSeek"
},
{
"group": "Dynamics",
"name": "Steering Evade",
"file_name": "05_steering_evade",
"object": "SteeringEvade"
},
{
"group": "Dynamics",
"name": "Steering Pursuit",
"file_name": "05_steering_pursuit",
"object": "SteeringPursuit"
},
{
"group": "Dynamics",
"name": "Steering Wander",
"file_name": "05_steering_wander",
"object": "SteeringWander"
},
{
"group": "Dynamics",
"name": "Steering Combined",
"file_name": "05_steering_combined",
"object": "SteeringCombined"
},
{
"group": "Physics",
"name": "MatterJS Friction",
"file_name": "06_matter_friction",
"object": "MatterFriction"
},
{
"group": "Physics",
"name": "MatterJS Air Friction",
"file_name": "06_matter_air_friction",
"object": "MatterAirFriction"
},
{
"group": "Physics",
"name": "MatterJS Bridge",
"file_name": "06_matter_bridge",
"object": "MatterBridge"
},
{
"group": "Physics",
"name": "MatterJS Car",
"file_name": "06_matter_car",
"object": "MatterCar"
},
{
"group": "Physics",
"name": "MatterJS Chains",
"file_name": "06_matter_chains",
"object": "MatterChains"
},
{
"group": "Physics",
"name": "MatterJS Cradle",
"file_name": "06_matter_cradle",
"object": "MatterCradle"
},
{
"group": "Physics",
"name": "MatterJS Mixed Shapes",
"file_name": "06_matter_mixed",
"object": "MatterMixedShapes"
},
{
"group": "Physics",
"name": "Cloth",
"file_name": "06_cloth",
"object": "Cloth"
},
{
"group": "Physics",
"name": "Collisions of a ball",
"file_name": "06_collisions_ball",
"object": "CollisionsBall"
},
{
"group": "Physics",
"name": "Collisions between Balls",
"file_name": "06_collisions_balls",
"object": "CollisionsBalls"
},
{
"group": "Physics",
"name": "Collisions between Rectangles",
"file_name": "06_collisions_rectangles",
"object": "CollisionsRectangles"
},
{
"group": "Physics",
"name": "Raycast Collisions",
"file_name": "06_collisions_raycasting",
"object": "CollisionsRaycasting"
},
{
"group": "Physics",
"name": "Platformer",
"file_name": "06_platformer",
"object": "Platformer"
},
{
"group": "Graphics",
"name": "Raycaster",
"file_name": "07_raycaster",
"object": "Raycaster"
},
{
"group": "Graphics",
"name": "Basic Shader",
"file_name": "07_shader_basic",
"object": "ShaderBasic"
},
{
"group": "Graphics",
"name": "Noise Shader",
"file_name": "07_shader_noise",
"object": "ShaderNoise"
},
{
"group": "Graphics",
"name": "Wave Shader",
"file_name": "07_shader_wave",
"object": "ShaderWave"
},
{
"group": "Graphics",
"name": "Rotation Tween",
"file_name": "07_tween_rotation",
"object": "TweenRotation"
},
{
"group": "Graphics",
"name": "Translation Tween",
"file_name": "07_tween_translation",
"object": "TweenTranslation"
},
{
"group": "Graphics",
"name": "Vision Cone",
"file_name": "07_vision_cone",
"object": "VisionCone"
},
{
"group": "Graphics",
"name": "Mandelbrot",
"file_name": "07_mandelbrot",
"object": "Mandelbrot"
},
{
"group": "Graphics",
"name": "Matrices",
"file_name": "07_matrices",
"object": "Matrices"
},
{
"group": "Graphics",
"name": "Lighting",
"file_name": "07_lighting",
"object": "Lighting"
},
{
"group": "Bots",
"name": "Bots",
"file_name": "08_bots",
"object": "Bots"
},
{
"group": "Bots",
"name": "Pursue",
"file_name": "08_pursue",
"object": "Pursue"
},
{
"group": "Networking",
"name": "Networking Animation",
"file_name": "09_anim",
"object": "NetworkAnim",
"second_canvas": true
},
{
"group": "Networking",
"name": "Networking Basics",
"file_name": "09_basics",
"object": "NetworkBasic",
"second_canvas": true
},
{
"group": "Networking",
"name": "Networking Interactive",
"file_name": "09_interactive",
"object": "NetworkInteractive",
"second_canvas": true
},
{
"group": "Networking",
"name": "Networking Steering",
"file_name": "09_steering",
"object": "NetworkSteering",
"second_canvas": true
},
{
"group": "Other examples",
"name": "Pixel-perfect hit-test",
"file_name": "others_hittest",
"object": "PixiHitTest"
},
{
"group": "Other examples",
"name": "Dialog",
"file_name": "others_dialog",
"object": "Dialog"
},
{
"group": "Other examples",
"name": "Progress Bar - Sequential",
"file_name": "others_progress_seq",
"object": "ProgressSequential"
},
{
"group": "Other examples",
"name": "Progress Bar - Parallel",
"file_name": "others_progress_par",
"object": "ProgressParallel"
},
{
"group": "Minigames",
"name": "Block Breaker",
"file_name": "game_blockbreaker",
"object": "BlockBreaker"
},
{
"group": "Minigames",
"name": "Tetris",
"file_name": "game_vlak",
"object": "Tetris"
},
{
"group": "Minigames",
"name": "Vlak",
"file_name": "game_tetris",
"object": "Vlak"
}
]