Releases: pixijs/pixi-react
Releases · pixijs/pixi-react
v7.0.1
v7.0.0
What's Changed
- Update to support React 18 by @baseten in #358
- Remove docz ready for release by @baseten in #360
- Update repo structure by @baseten in #363
- Convert to monorepo by @baseten in #364
- Add docusaurus by @baseten in #366
- Fix
BitmapText
double destroy bug by @baseten in #378 - Pixi V7 by @baseten in #377
- Prep for v7 release by @baseten in #380
- export TYPES on @pixi/react instead by @baseten in #384
- Remove tsconfig package in favour of root file by @baseten in #386
- Move sideEffects false to each package by @baseten in #387
- Update docs version and fix baseUrl by @baseten in #388
- fix doc deployment by @Zyie in #390
- Replace
pixi-react
PIXI package import with scoped packages by @baseten in #391 - Add createRoot API by @baseten in #392
- Update README.md by @GoodBoyDigital in #376
- Add GH release action by @baseten in #393
- Launch V7 by @baseten in #394
- Fix Docs by @baseten in #395
- Fix borked versions by @baseten in #397
New Contributors
- @baseten made their first contribution in #358
- @Zyie made their first contribution in #390
- @GoodBoyDigital made their first contribution in #376
Full Changelog: v6.8.0...v7.0.0
v7.0.0-alpha.0
Changes
- Added support for react 18 #358
v6.8.0
v6.7.0
v6.6.6
v6.6.5
v6.6.4
Improved
useTick
now uses the ticker instance as this
, example:
const Counter = () => {
useTick(function tick(){
console.log(this.elapsedMS) ;
});
return ...
}
or use the second param to retrieve the ticker instance:
const Counter = () => {
useTick((delta, ticker) => {
console.log(ticker.elapsedMS) ;
})
return ...
}
v6.6.2
v6.6.1
Added
You can now provide a config
object in a PixiComponent
to control the the reconciliation behaviour, see: