Skip to content

Releases: pixijs/pixi-react

v7.0.1

07 Feb 12:02
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.0...v7.0.1

v7.0.0

03 Feb 10:48
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.8.0...v7.0.0

v7.0.0-alpha.0

23 Dec 17:02
c6731d4
Compare
Choose a tag to compare
v7.0.0-alpha.0 Pre-release
Pre-release

Changes

  • Added support for react 18 #358

v6.8.0

20 May 10:16
Compare
Choose a tag to compare

Improved

  • Move update events from window to root container

v6.7.0

31 Mar 14:16
Compare
Choose a tag to compare

Added

Support for <Graphics geometry={geometry} />, see #334

v6.6.6

30 Mar 08:43
Compare
Choose a tag to compare

Improved

Support Federated Events API

v6.6.5

06 Aug 09:31
Compare
Choose a tag to compare

Improved

Export internal types (InteractionEvents)

v6.6.4

04 Aug 21:07
Compare
Choose a tag to compare

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

14 Jun 11:42
Compare
Choose a tag to compare

Add fixes for element creation regarding the config for custom components

v6.6.1

14 Jun 10:38
Compare
Choose a tag to compare

Added

You can now provide a config object in a PixiComponent to control the the reconciliation behaviour, see:

https://reactpixi.org/custom-components#config