react-pixi-fiber 1.0.5 → 1.0.7-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,563 @@
1
+ # CHANGELOG
2
+ -----------
3
+
4
+ All notable changes to this project will be documented in this file.
5
+
6
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
7
+ and this project adheres to [Semantic Versioning](http://semver.org/).
8
+
9
+ ## [Unreleased]
10
+
11
+
12
+ ## [1.0.6] - 2023-01-13
13
+
14
+ ### Added
15
+ - Added support for events in PixiJS v7.1 ([#306])
16
+
17
+
18
+ ## [1.0.4] - 2022-10-19
19
+
20
+ ### Fixed
21
+ - Fixed reconciler to check that parent exists before calling `appendChild` ([#291])
22
+ - Fixed `useStageRerenderer` hook in `React.StrictMode` ([#285])
23
+
24
+
25
+ ## [1.0.3] - 2022-10-11
26
+
27
+ ### Fixed
28
+ - Fixed reconciler to check that container exists before calling `removeChildren` ([#286])
29
+
30
+
31
+ ## [1.0.2] - 2022-09-01
32
+
33
+ ### Fixed
34
+ - Fixed ES build by replacing inline require with regular import ([#283])
35
+
36
+
37
+ ## [1.0.1] - 2022-08-02
38
+
39
+ ### Fixed
40
+ - Fixed peer dependencies ([#277])
41
+
42
+
43
+ ## [1.0.0] - 2022-07-19
44
+
45
+ ### Added
46
+ - Added ReactDOM-like prop validation in development ([#47])
47
+ - Added ES format output
48
+ - Added missing `prop-types` dependency ([#221])
49
+
50
+ ### Changed
51
+ - Updated build dependencies
52
+ - Updated dev dependencies
53
+ - Changed `Stage` class and function component types to be the same ([#225])
54
+ - Changed Stage to delay destroying PIXI.Application when unmounting
55
+ - Changed usePixiApp to throw an error when used outside of <Stage /> ([#227])
56
+
57
+ ### Fixed
58
+ - Fixed type of `oldProps` sent to `customApplyProps` of `CustomPIXIComponent`
59
+ - Fixed hook-based `Stage` to render and rerender synchronously ([#204])
60
+ - Fixed type compatibility with PixiJS v6.0.0 ([#210])
61
+ - Fixed breaking change when undefined values were assigned to props with previously defined values
62
+
63
+ ### Removed
64
+ - Removed `performance-now` dependency
65
+
66
+
67
+ ## [0.14.2] - 2020-11-28
68
+
69
+ ### Fixed
70
+ - Fixed compatibility with React 17 and React.Suspense ([#196])
71
+
72
+
73
+ ## [0.14.1] - 2020-07-13
74
+
75
+ ### Fixed
76
+ - Fixed type compatibility with PixiJS v5.3.0 ([#185])
77
+
78
+
79
+ ## [0.14.0] - 2020-04-04
80
+
81
+ ### Added
82
+ - Added <NineSlicePlane /> component ([#176])
83
+
84
+ ### Fixed
85
+ - Fixed applyProps type definition ([#176])
86
+ - Fixed `StagePropsWithOptions` type definition to work with both PixiJS v4 and v5 ([#180])
87
+ - Fixed `StageProps` type definition to include `Container` props and exclude width and height ([#182])
88
+
89
+
90
+ ## [0.13.2] - 2020-02-17
91
+
92
+ ### Fixed
93
+ - Fixed `Stage` not to resize renderer if app is provided in props ([#174])
94
+
95
+
96
+ ## [0.13.1] - 2020-02-13
97
+
98
+ ### Added
99
+ - Added exports for type of props for built-in components ([#170])
100
+
101
+
102
+ ## [0.13.0] - 2020-02-03
103
+
104
+ ### Added
105
+ - Added `style` prop to `BitmapText` type ([#166])
106
+
107
+ ### Fixed
108
+ - Fixed type definitions to work with both PixiJS v4 and v5 ([#166])
109
+ - Fixed type definitions for properties of type `any` being replaced with `PointLike` ([#166])
110
+ - Fixed type definitions for built-in components to be able to use `ref`s ([#166])
111
+ - Fixed type definitions for `AppContext` which was exported as type, not as value ([#166])
112
+
113
+
114
+ ## [0.12.3] - 2020-01-28
115
+
116
+ ### Added
117
+ - Added missing type definitions ([#163])
118
+
119
+ ### Fixed
120
+ - Fixed type definitions for `CustomPIXIComponents` ([#163])
121
+ - Fixed type definitions for `Stage` to be able to use `ref`s ([#165])
122
+
123
+
124
+ ## [0.12.2] - 2020-01-20
125
+
126
+ ### Added
127
+ - Added support for point like props ([#162])
128
+
129
+ ### Changed
130
+ - Rewrote types definition
131
+
132
+
133
+ ## [0.12.1] - 2019-12-26
134
+
135
+ ### Fixed
136
+ - Fixed `ReactPixiFiber` to destroy child components when parent is removed from tree ([#157])
137
+
138
+
139
+ ## [0.12.0] - 2019-11-23
140
+
141
+ ### Added
142
+ - Added `app` prop to `Stage` ([#154])
143
+
144
+ ### Deprecated
145
+ - Deprecated `width` and `height` props of `Stage` ([#153])
146
+
147
+
148
+ ## [0.11.1] - 2019-10-25
149
+
150
+ ### Fixed
151
+ - Fixed usage of Point copy/copyFrom in PixiJS v5 ([#149])
152
+
153
+
154
+ ## [0.11.0] - 2019-10-22
155
+
156
+ ### Changed
157
+ - Exposed `createStageClass` from `Stage` ([#147])
158
+ - Changed dev tools version reported to be `React` version instead of `ReactPixiFiber` version ([#148])
159
+
160
+
161
+ ## [0.10.0] - 2019-10-18
162
+
163
+ ### Added
164
+ - Added `usePixiAppCreator`, `usePixiApp` and `usePixiTicker` hooks ([#127])
165
+
166
+ ### Changed
167
+ - Improved hooks support ([#127])
168
+
169
+
170
+ ## [0.9.3] - 2019-08-29
171
+
172
+ ### Changed
173
+ - Changed `console.warn` calls into `fbjs/lib/warning` calls.
174
+
175
+ ### Fixed
176
+ - Fixed setting default prop value when removing prop from instance ([#141])
177
+
178
+
179
+ ## [0.9.2] - 2019-08-01
180
+
181
+ ### Fixed
182
+ - Fixed type definition to include `withApp` ([#125])
183
+
184
+
185
+ ## [0.9.1] - 2019-07-31
186
+
187
+ ### Fixed
188
+ - Fixed renderer to be secondary when using `<Stage />` component
189
+
190
+
191
+ ## [0.9.0] - 2019-07-01
192
+
193
+ ### Added
194
+ - Added `scheduler`
195
+
196
+ ### Changed
197
+ - Updated `react-reconciler` to `0.20.4` ([#122])
198
+
199
+ ### Fixed
200
+ - Fixed PixiJS v5 compatibility issues ([#118])
201
+
202
+
203
+ ## [0.8.2] - 2019-07-01
204
+
205
+ ### Changed
206
+ - Changed `render` to inject into dev tools once per `containerTag`
207
+
208
+ ### Fixed
209
+ - Fixed `setPixiValue` for Point values when using PixiJS v5 ([#120])
210
+
211
+
212
+ ## [0.8.1] - 2019-05-29
213
+
214
+ ### Fixed
215
+ - Fixed interactive elements type definition ([#109])
216
+
217
+ ### Removed
218
+ - Removed `package.json` references from bundled code ([#112])
219
+
220
+
221
+ ## [0.8.0] - 2019-02-24
222
+
223
+ ### Added
224
+ - Expose `applyProps` from `ReactPixiFiber` ([#95])
225
+ - Added example of "native" Animated target for `react-pixi-fiber` ([#95])
226
+ - Added custom test environment for `jest` ([#97])
227
+
228
+ ### Changed
229
+ - Replaced deprecated canvas-prebuilt development dependency by canvas ([#97])
230
+
231
+ ### Fixed
232
+ - Fixed `customDidAttach` of example `<DraggableContainer />` component ([#91])
233
+ - Fixed `insertBefore` method of `ReactPixiFiber` ([#98])
234
+
235
+
236
+ ## [0.7.0] - 2018-12-27
237
+
238
+ ### Added
239
+ - Added unstable_batchedUpdates API ([#89])
240
+
241
+
242
+ ## [0.6.2] - 2018-11-14
243
+
244
+ ### Fixed
245
+ - Fixed PixiJS event props not being passed to `<Stage />` component ([#85])
246
+
247
+
248
+ ## [0.6.1] - 2018-11-10
249
+
250
+ ### Fixed
251
+ - Fixed context not passed through from primary renderer (`react-dom`) into `react-pixi-fiber` ([#84])
252
+
253
+
254
+ ## [0.6.0] - 2018-11-10
255
+
256
+ ### Fixed
257
+ - Fixed React 16.6.0 compatibility ([#83])
258
+
259
+
260
+ ## [0.5.1] - 2018-11-02
261
+
262
+ ### Added
263
+ - Added AppContext to type definition ([#81])
264
+
265
+ ### Fixed
266
+ - Fixed render function type definition ([#76])
267
+
268
+
269
+ ## [0.5.0] - 2018-10-10
270
+
271
+ ### Added
272
+ - Added support for New Context API ([#72])
273
+
274
+ ### Fixed
275
+ - Fixed React 16.5.0 compatibility ([#71])
276
+
277
+
278
+ ## [0.4.9] - 2018-07-09
279
+
280
+ ### Changed
281
+ - Changed `defaultApplyProps` to wrap console warnings in dev flag ([#67])
282
+
283
+
284
+ ## [0.4.8] - 2018-06-25
285
+
286
+ ### Changed
287
+ - Updated `react-reconciler` to `0.12.0` ([#65])
288
+
289
+ ### Fixed
290
+ - Removed namespace from Typescript definition ([#64])
291
+
292
+
293
+ ## [0.4.7] - 2018-06-10
294
+
295
+ ### Changed
296
+ - Changed `<Stage />` to support `width` and `height` passed in `options` prop ([#60])
297
+
298
+ ### Fixed
299
+ - Fixed TypeScript definitions to support TypeScript 2.9 ([#58])
300
+ - Fixed memory leak when mounting/unmounting `<Stage />` ([#61])
301
+
302
+
303
+ ## [0.4.6] - 2018-05-22
304
+
305
+ ### Fixed
306
+ - Fixed TypeScript definitions ([#54])
307
+
308
+
309
+ ## [0.4.5] - 2018-05-18
310
+
311
+ ### Changed
312
+ - Updated `react-reconciler` to `0.10.0` ([#53])
313
+
314
+
315
+ ## [0.4.4] - 2018-05-09
316
+
317
+ ### Fixed
318
+ - Fixed cjs build of react-pixi-alias
319
+
320
+
321
+ ## [0.4.3] - 2018-03-28
322
+
323
+ ### Fixed
324
+ - Fixed entry point to load module by env
325
+ - Fixed `commitUpdate` for `CustomPIXIComponents` ([#44])
326
+
327
+
328
+ ## [0.4.2] - 2018-03-27
329
+
330
+ ### Fixed
331
+ - Fixed cjs build
332
+
333
+
334
+ ## [0.4.1] - 2018-03-27 [YANKED]
335
+
336
+ ### Added
337
+ - Added unit tests ([#6])
338
+
339
+ ### Changed
340
+ - Changed bundler from babel-cli to Rollup
341
+
342
+ ### Fixed
343
+ - Fixed `prepareUpdate` to return diff of props ([#43])
344
+
345
+
346
+ ## [0.4.0] - 2018-02-28
347
+
348
+ ### Fixed
349
+ - Fixed DisplayObject members passed to Stage as props not being applied to root Container ([#38])
350
+
351
+
352
+ ## [0.3.1] - 2018-02-25
353
+
354
+ ### Fixed
355
+ - Fixed PropTypes warning in Stage ([#34])
356
+ - Added `react-pixi-alias.js` file to distributed package `files` list ([#37])
357
+
358
+
359
+ ## [0.3.0] - 2018-02-15
360
+
361
+ ### Added
362
+ - Added parser for PIXI.Point-like props - Point-like DisplayObject members can now be assigned using string, number, array and Point/ObservablePoint ([#19])
363
+ - Added support for custom components using `react-pixi` API ([#19])
364
+
365
+ ### Changed
366
+ - Changed `<Stage />` to pass `options` prop to `PIXI.Application` ([#28])
367
+ - Changed `<Stage />` to pass not consumed props to rendered canvas ([#29])
368
+ - Changed `<Stage />` to resize renderer when dimensions are changed ([#30])
369
+ - Changed inconsistent usage of reconciler config functions to use regular functions instead of anonymous arrow functions
370
+ - Changed `PIXI.DisplayObject` members handling when passed as props - `undefined` values will now be replaced with default values if default defined
371
+
372
+ ### Fixed
373
+ - Fixed deprecated usage of `PIXI.BitmapText` to `PIXI.extras.BitmapText`
374
+
375
+ ### Removed
376
+ - Removed `backgroundColor` prop from `<Stage />` ([#28])
377
+
378
+
379
+ ## [0.2.5] - 2018-02-11
380
+
381
+ ### Added
382
+ - Added back removed `useSyncScheduling` option ([#15])
383
+
384
+ ### Fixed
385
+ - Added `index.d.ts` file to distributed package `files` list ([#4], [#8])
386
+
387
+
388
+ ## [0.2.4] - 2018-02-07 [YANKED]
389
+
390
+ ### Removed
391
+ - Removed deprecated `useSyncScheduling` option ([#15])
392
+
393
+
394
+ ## [0.2.3] - 2018-02-06
395
+
396
+ ### Added
397
+ - Added an alias for "easy" migration from [`react-pixi`](https://github.com/Izzimach/react-pixi) ([#9])
398
+ - Added TypeScript definitions ([#8])
399
+
400
+
401
+ ## [0.2.2] - 2018-01-17
402
+
403
+ ### Fixed
404
+ - Fixed distributed cjs files by using `transform-es2015-modules-commonjs` with `babel` ([#4])
405
+
406
+
407
+ ## [0.2.1] - 2018-01-17
408
+
409
+ ### Added
410
+ - Added `<ParticleContainer />` component
411
+ - Added development build script
412
+ - Added `files` to `package.json`
413
+
414
+
415
+ ## [0.2.0] - 2018-01-05
416
+
417
+ ### Added
418
+ - Added standalone `render` function ([#2])
419
+
420
+
421
+ ## [0.1.1] - 2018-01-05
422
+
423
+ ### Fixed
424
+ - Added missing `performance-now` dependency
425
+
426
+
427
+ ## 0.1.0 - 2018-01-05
428
+
429
+ ### Added
430
+ - Added `ReactPixiFiber` renderer
431
+ - Added `<Stage />` component
432
+ - Added `<BitmapText />` component
433
+ - Added `<Container />` component
434
+ - Added `<Graphics />` component
435
+ - Added `<Sprite />` component
436
+ - Added `<Text />` component
437
+ - Added `<TilingSprite />` component
438
+
439
+
440
+ [Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.6...HEAD
441
+ [1.0.6]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.4...v1.0.6
442
+ [1.0.4]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...v1.0.4
443
+ [1.0.3]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.2...v1.0.3
444
+ [1.0.2]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.1...v1.0.2
445
+ [1.0.1]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.0...v1.0.1
446
+ [1.0.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.3...v1.0.0
447
+ [0.14.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.1...v0.14.2
448
+ [0.14.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.0...v0.14.1
449
+ [0.14.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.13.2...v0.14.0
450
+ [0.13.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.13.1...v0.13.2
451
+ [0.13.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.13.0...v0.13.1
452
+ [0.13.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.12.3...v0.13.0
453
+ [0.12.3]: https://github.com/michalochman/react-pixi-fiber/compare/v0.12.2...v0.12.3
454
+ [0.12.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.12.1...v0.12.2
455
+ [0.12.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.12.0...v0.12.1
456
+ [0.12.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.11.1...v0.12.0
457
+ [0.11.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.11.0...v0.11.1
458
+ [0.11.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.10.0...v0.11.0
459
+ [0.10.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.9.3...v0.10.0
460
+ [0.9.3]: https://github.com/michalochman/react-pixi-fiber/compare/v0.9.2...v0.9.3
461
+ [0.9.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.9.1...v0.9.2
462
+ [0.9.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.9.0...v0.9.1
463
+ [0.9.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.8.2...v0.9.0
464
+ [0.8.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.8.1...v0.8.2
465
+ [0.8.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.8.0...v0.8.1
466
+ [0.8.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.7.0...v0.8.0
467
+ [0.7.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.6.2...v0.7.0
468
+ [0.6.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.6.1...v0.6.2
469
+ [0.6.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.6.0...v0.6.1
470
+ [0.6.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.5.1...v0.6.0
471
+ [0.5.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.5.0...v0.5.1
472
+ [0.5.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.9...v0.5.0
473
+ [0.4.9]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.8...v0.4.9
474
+ [0.4.8]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.7...v0.4.8
475
+ [0.4.7]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.6...v0.4.7
476
+ [0.4.6]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.5...v0.4.6
477
+ [0.4.5]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.4...v0.4.5
478
+ [0.4.4]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.3...v0.4.4
479
+ [0.4.3]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.2...v0.4.3
480
+ [0.4.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.1...v0.4.2
481
+ [0.4.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.4.0...v0.4.1
482
+ [0.4.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.3.1...v0.4.0
483
+ [0.3.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.3.0...v0.3.1
484
+ [0.3.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.5...v0.3.0
485
+ [0.2.5]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.4...v0.2.5
486
+ [0.2.4]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.3...v0.2.4
487
+ [0.2.3]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.2...v0.2.3
488
+ [0.2.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.1...v0.2.2
489
+ [0.2.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.2.0...v0.2.1
490
+ [0.2.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.1...v0.2.0
491
+ [0.1.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.0...v0.1.1
492
+
493
+ [#306]: https://github.com/michalochman/react-pixi-fiber/pull/306
494
+ [#291]: https://github.com/michalochman/react-pixi-fiber/pull/291
495
+ [#286]: https://github.com/michalochman/react-pixi-fiber/pull/286
496
+ [#285]: https://github.com/michalochman/react-pixi-fiber/issues/285
497
+ [#283]: https://github.com/michalochman/react-pixi-fiber/pull/283
498
+ [#277]: https://github.com/michalochman/react-pixi-fiber/pull/277
499
+ [#227]: https://github.com/michalochman/react-pixi-fiber/issues/227
500
+ [#225]: https://github.com/michalochman/react-pixi-fiber/issues/225
501
+ [#221]: https://github.com/michalochman/react-pixi-fiber/issues/221
502
+ [#210]: https://github.com/michalochman/react-pixi-fiber/issues/210
503
+ [#204]: https://github.com/michalochman/react-pixi-fiber/issues/204
504
+ [#196]: https://github.com/michalochman/react-pixi-fiber/issues/196
505
+ [#185]: https://github.com/michalochman/react-pixi-fiber/issues/185
506
+ [#182]: https://github.com/michalochman/react-pixi-fiber/pull/182
507
+ [#180]: https://github.com/michalochman/react-pixi-fiber/pull/180
508
+ [#174]: https://github.com/michalochman/react-pixi-fiber/pull/174
509
+ [#170]: https://github.com/michalochman/react-pixi-fiber/pull/170
510
+ [#166]: https://github.com/michalochman/react-pixi-fiber/pull/166
511
+ [#165]: https://github.com/michalochman/react-pixi-fiber/pull/165
512
+ [#163]: https://github.com/michalochman/react-pixi-fiber/pull/163
513
+ [#162]: https://github.com/michalochman/react-pixi-fiber/pull/162
514
+ [#157]: https://github.com/michalochman/react-pixi-fiber/pull/157
515
+ [#154]: https://github.com/michalochman/react-pixi-fiber/pull/154
516
+ [#153]: https://github.com/michalochman/react-pixi-fiber/pull/153
517
+ [#149]: https://github.com/michalochman/react-pixi-fiber/issues/149
518
+ [#148]: https://github.com/michalochman/react-pixi-fiber/pull/148
519
+ [#147]: https://github.com/michalochman/react-pixi-fiber/pull/147
520
+ [#141]: https://github.com/michalochman/react-pixi-fiber/pull/141
521
+ [#127]: https://github.com/michalochman/react-pixi-fiber/pull/127
522
+ [#125]: https://github.com/michalochman/react-pixi-fiber/issues/125
523
+ [#122]: https://github.com/michalochman/react-pixi-fiber/issues/122
524
+ [#120]: https://github.com/michalochman/react-pixi-fiber/issues/120
525
+ [#118]: https://github.com/michalochman/react-pixi-fiber/issues/118
526
+ [#112]: https://github.com/michalochman/react-pixi-fiber/pull/112
527
+ [#109]: https://github.com/michalochman/react-pixi-fiber/pull/109
528
+ [#98]: https://github.com/michalochman/react-pixi-fiber/pull/98
529
+ [#97]: https://github.com/michalochman/react-pixi-fiber/pull/97
530
+ [#95]: https://github.com/michalochman/react-pixi-fiber/pull/95
531
+ [#91]: https://github.com/michalochman/react-pixi-fiber/issues/91
532
+ [#89]: https://github.com/michalochman/react-pixi-fiber/pull/89
533
+ [#85]: https://github.com/michalochman/react-pixi-fiber/issues/85
534
+ [#84]: https://github.com/michalochman/react-pixi-fiber/pull/84
535
+ [#83]: https://github.com/michalochman/react-pixi-fiber/pull/83
536
+ [#81]: https://github.com/michalochman/react-pixi-fiber/issues/81
537
+ [#76]: https://github.com/michalochman/react-pixi-fiber/pull/76
538
+ [#72]: https://github.com/michalochman/react-pixi-fiber/pull/72
539
+ [#71]: https://github.com/michalochman/react-pixi-fiber/issues/71
540
+ [#67]: https://github.com/michalochman/react-pixi-fiber/pull/67
541
+ [#65]: https://github.com/michalochman/react-pixi-fiber/pull/65
542
+ [#64]: https://github.com/michalochman/react-pixi-fiber/pull/64
543
+ [#61]: https://github.com/michalochman/react-pixi-fiber/pull/61
544
+ [#60]: https://github.com/michalochman/react-pixi-fiber/pull/60
545
+ [#58]: https://github.com/michalochman/react-pixi-fiber/issues/58
546
+ [#54]: https://github.com/michalochman/react-pixi-fiber/issues/54
547
+ [#53]: https://github.com/michalochman/react-pixi-fiber/pull/53
548
+ [#47]: https://github.com/michalochman/react-pixi-fiber/pull/47
549
+ [#44]: https://github.com/michalochman/react-pixi-fiber/issues/44
550
+ [#43]: https://github.com/michalochman/react-pixi-fiber/issues/43
551
+ [#38]: https://github.com/michalochman/react-pixi-fiber/issues/38
552
+ [#37]: https://github.com/michalochman/react-pixi-fiber/pull/37
553
+ [#34]: https://github.com/michalochman/react-pixi-fiber/pull/34
554
+ [#30]: https://github.com/michalochman/react-pixi-fiber/pull/31
555
+ [#29]: https://github.com/michalochman/react-pixi-fiber/issues/29
556
+ [#28]: https://github.com/michalochman/react-pixi-fiber/issues/28
557
+ [#19]: https://github.com/michalochman/react-pixi-fiber/issues/19
558
+ [#15]: https://github.com/michalochman/react-pixi-fiber/issues/15
559
+ [#9]: https://github.com/michalochman/react-pixi-fiber/issues/9
560
+ [#8]: https://github.com/michalochman/react-pixi-fiber/issues/8
561
+ [#6]: https://github.com/michalochman/react-pixi-fiber/issues/6
562
+ [#4]: https://github.com/michalochman/react-pixi-fiber/issues/4
563
+ [#2]: https://github.com/michalochman/react-pixi-fiber/issues/2