Jump to content

Jittery scrolling and how to handle texture frame properly.


Tomatosoup
 Share

Recommended Posts

No matter what I try or how I implement things, I keep getting some jittery scroll movement.

I was using the <canvas> tag before this, without PixiJS and it was a lot of jittery movement. Just one drawImage call per rAF-call would take far more than 16,6 ms.

I used the <canvas> for drawing frames.  But I also used the transform CSS property for instance. With and without CSS transitions.

But currently I'm using PixiJS with a RenderTexture and the scrolling still seems somewhat jittery to me, though maybe less jittery.

I'm not drawing vector graphics. I'm drawing images (PNG files actually). When an image has loaded I add it to a somewhat large RenderTexture (4096x4096). Because width of the images don't exceed 1024 pixels, I now store the images inside four columns of 1024 by 4096 pixels.

I then have a sprite for which I create a Texture (which I recently found out to be just a reference to a BaseTexture combined with a certain frame). Each time I scroll I create a new Texture pointing to the same RenderTexture but using a different frame.

Though at a certain point it seems I need two sprites with textures both pointing to the same RenderTexture but with different frames. Because, let's say, when the first frame starts at 4000 and I need about 800 pixels from the image (e.g. 800 could be window height or screen height) I need to have a frame pointing at the last 96 pixels of the first column within the RenderTexture and a frame which points to the other column, getting the remaining 704 pixels.

Should this be a proper way of handling this? Or is there a faster way to handle this somehow? Maybe I could make sure to make the height of the columns within the RenderTexture are dividable by the current window height. Though then it would mean some column height would go unused (but then this would probably be true for all columns, so maybe not such of a big deal). And this reordering would then need to happen each time a resize occurs.

I guess a large screen size (regarding height) would not work very well with how I'm handling this now?

Any advice would be much appreciated :)

By the way, I'm also using a small easing function which I call via setTimeout when there is movement. But the actual drawing takes place currently in the ticker function. It just calculates current scrolling speed, does not draw anything.

Link to comment
Share on other sites

TL DR.

Texture = Frame+BaseTexture, so yeah, you need multiple instances of `IXI.Texture` to handle multiple frames, dont forget to call _updateUvs() if you changed frame fields manually.

Also for big frames for some OS/browser you have to set "PIXI.settings.PRECISION_FRAGMENT = PIXI.PRECISION.HIGH" to avoid jittering. Sometimes its not even enoguh and you have to use alternative renderer, https://github.com/pixijs/pixi-picture

Please make a fiddle, it will help me understand your problem.

 

Link to comment
Share on other sites

Thanks for your reply! I set the precision to high. But it doesn't seem to work. It's still jittery when using mobile or desktop devices. 

I made a fiddle here: https://jsfiddle.net/Preacher/nkycdbsv 

If you pay attention to the vertically scrolling colours you will notice the occasional jitter. I'm not using two sprites and not even an easing formula and it's still jittery. But maybe I'm doing something completely wrong though.

Link to comment
Share on other sites

Ok, I've changed it a bit: https://jsfiddle.net/nkycdbsv/88/ , you used two renderers at the same time - one was inside "app".

Please read up the source code of Application: https://github.com/pixijs/pixi.js/blob/dev/src/core/Application.js 

Either you use it, either you ctrl+C and make your own renderer/ticker mashup. In your version, there were two renderers, two webgl context.

However its not the problem, jittering still occurs, I dont know why. 

One more stupid tip:  you can change frame of "rt" instead of creating one extra "PIXI.Texture".

Link to comment
Share on other sites

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...