Migration guide v3->v4
See original GitHub issue- Textures are clamped by default, in v3 they were repeated http://www.html5gamedevs.com/topic/24778-displacementfilter-not-repeating-when-moving-displacement-sprite/
texture.baseTexture.wrapMode=PIXI.WRAP_MODES.REPEAT;
- For filters , you have to use mappedMatrix to convert textureCoord to mapCoord, all because of paddings and pow2. Also, use filterClamp uniform to prevent bad things on edges (inputCoord.xy, filterClamp.xy, filterClamp.zw) : http://www.html5gamedevs.com/topic/24347-weird-filterareas-size-on-v4/ , displacement and blur are good examples for that
- if you had that piece of code somewhere, remove it. In most cases, pixi-display plugin might be able to help you.
s.position = myPoint; // COPYING ASSIGNMENT! in v3 that was reference
s2.position = myPoint; //shadow sprite , same coord
myPoint.x = 10; //wont work. ha-ha
s.anchor = myPoint ; // DONT do that please! we will fix it later
- https://github.com/pixijs/pixi.js/issues/2859 - YEAH, font is deprecated use font-family and all that
- TilingSprite works bad with mipmap, and pow2 textures are mipmapped by default. We will fix that issue later, for now just
texture.baseTexture.mipmap=false;
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:7 (5 by maintainers)
Top Results From Across the Web
How To Migrate From Strapi v3 to v4 Walkthrough
We will cover the general process overview, the steps you must take, and how to use the migration guide to help you succeed...
Read more >IoT TS Aggregates Service - V3.x to V4.x Migration Guide
Discover how you can use MindSphere to make machines smart, make production lines fast, and prevent equipment failures before they happen.
Read more >Migration guide v3 -> v4 or changelog? · Issue #4738 - GitHub
Hey! Thank you for great work here! I didn't find any migration guide from 3 to 4 or even full changelog. Is it...
Read more >Migration V3 -> V4 - JDA Wiki
Migration Guide 3.X to 4.X¶. This version includes a number of breaking changes. Extensions That Support 4.X¶. Here is a list of known...
Read more >Upgrade Guide (v3 -> v4) | Format.JS
Upgrade Guide (v3 -> v4) ... These components helped ease migration over from raw HTML to JSX. ... Migrating off embedded HTML in...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Would we move this to a Wiki page instead of an Issue?
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.