Unity API Update 5.6.2
parent
330cc4ee38
commit
42c2a5dace
|
@ -193,7 +193,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
Vector4 particleUV = _uv;
|
Vector4 particleUV = _uv;
|
||||||
if (_textureSheetAnimation.enabled)
|
if (_textureSheetAnimation.enabled)
|
||||||
{
|
{
|
||||||
float frameProgress = 1 - (particle.lifetime / particle.startLifetime);
|
float frameProgress = 1 - (particle.remainingLifetime / particle.startLifetime);
|
||||||
// float frameProgress = textureSheetAnimation.frameOverTime.curveMin.Evaluate(1 - (particle.lifetime / particle.startLifetime)); // TODO - once Unity allows MinMaxCurve reading
|
// float frameProgress = textureSheetAnimation.frameOverTime.curveMin.Evaluate(1 - (particle.lifetime / particle.startLifetime)); // TODO - once Unity allows MinMaxCurve reading
|
||||||
frameProgress = Mathf.Repeat(frameProgress * _textureSheetAnimation.cycleCount, 1);
|
frameProgress = Mathf.Repeat(frameProgress * _textureSheetAnimation.cycleCount, 1);
|
||||||
int frame = 0;
|
int frame = 0;
|
||||||
|
|
Loading…
Reference in New Issue