API update guarded with #if directive

pull/413/head
Mauro Ronchi 2017-06-29 15:07:29 +02:00
parent 42c2a5dace
commit 78c2d42a9a
1 changed files with 296 additions and 292 deletions

View File

@ -193,7 +193,11 @@ namespace UnityEngine.UI.Extensions
Vector4 particleUV = _uv;
if (_textureSheetAnimation.enabled)
{
#if UNITY_5_5_OR_NEWER
float frameProgress = 1 - (particle.remainingLifetime / particle.startLifetime);
#else
float frameProgress = 1 - (particle.lifetime / particle.startLifetime);
#endif
// float frameProgress = textureSheetAnimation.frameOverTime.curveMin.Evaluate(1 - (particle.lifetime / particle.startLifetime)); // TODO - once Unity allows MinMaxCurve reading
frameProgress = Mathf.Repeat(frameProgress * _textureSheetAnimation.cycleCount, 1);
int frame = 0;