Releases: pixijs/pixi-react
Releases · pixijs/pixi-react
v6.6.5
Improved
Export internal types (InteractionEvents
)
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
Add fixes for element creation regarding the config for custom components
v6.5.3
Updated
- dependecies
- docz (added a temporary fix to make the build pass)
Added
- Make
<Text />
component compliant with react-spring
v6.5.2
Update react-spring types
v6.5.1
Fixed
Return changes for native components needed to commit updates during reconciliation.
v6.5.0
Improved
- Default
autoDensity=true
, you can disable it: <Stage options={{ autoDensity: false }}>
- Validate
AnimatedSprite.texture
for FrameObject
as well
v6.4.0
Updated
- React reconciler
- React Spring to stable v9
- Modules
Removed
- postinstall script for
react-spring
v6.3.0
Improved rendering stage when renderOnComponentChange
is set to true