[SOLVED] Sprite animation bugged on mobile

Hello, I am trying to create animated sprite, I am using script which sets the current spriteFrame in tween update. Here is simple project: PlayCanvas | HTML5 Game Engine . Everything works fine on computer, but on the mobile as soon as the animation start I am getting bugged frames which looks like this

I tried multiple different textures to make sure the texture isn’t wrong, but still the same error.

How large is the texture? If its more than the max size supported by device, the engine resizes to the device max size. This can be 4096 X 4096 on mobile

1 Like

Ah, that is the problem, texture has 6000pixels width, so I will reduce it. Thank you!