Merged in bluefallsky/unity-ui-extensions (pull request #65)

Fix UI Particles: Texture sheet animation + Random row(#256)
pull/413/head
bluefallsky 2020-03-15 14:44:10 +00:00 committed by Simon Jackson
commit c1336f4a1d
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ namespace UnityEngine.UI.Extensions
frame %= textureSheetAnimationFrames;
particleUV.x = (frame % textureSheetAnimation.numTilesX) * textureSheetAnimationFrameSize.x;
particleUV.y = Mathf.FloorToInt(frame / textureSheetAnimation.numTilesX) * textureSheetAnimationFrameSize.y;
particleUV.y = 1.0f - Mathf.FloorToInt(frame / textureSheetAnimation.numTilesX) * textureSheetAnimationFrameSize.y;
particleUV.z = particleUV.x + textureSheetAnimationFrameSize.x;
particleUV.w = particleUV.y + textureSheetAnimationFrameSize.y;
}