CodinGame / codingame-game-engine

CodinGame Engine
https://www.codingame.com
MIT License
113 stars 41 forks source link

Fixed new version of Pixy breaking TilingSprite.js #49

Closed Butanium closed 2 years ago

Butanium commented 2 years ago

I had this issue image with this line

    this.graphics = new PIXI.extras.TilingSprite(PIXI.Texture.EMPTY)

And this was caused because TilingSprite are no longer in PIXI.extras but in PIXI

So I fixed the line like this :

    this.graphics = new PIXI.TilingSprite(PIXI.Texture.EMPTY)
CGjupoulton commented 2 years ago

Fixed in v 4.1.5