Hello, all! I’m sorry if this question overlap some already answered ones about deltaTime behavior and framerate dependancy… I’ve found useful answers but not specifically related to this…
The following code is placed on a sprite and cycles through its animation frames over time.
private float animTimer = 0f;
private float animInterval = 0.03f;
private int displayFrame = 0;
void Update () {
animTimer += Time.deltaTime;
if (animTimer >= animInterval) {
animTimer = 0f;
renderer.material.mainTextureOffset = animMove[displayFrame];
displayFrame += 1;
if (displayFrame == animMove.Length) {
displayFrame = 0;
}
}
}
For example, a 0.1f animInterval solves the problem, but with a 0.03f one, animTimer excess the interval, thus slowing down the animation with slower framerate.
Conversely, if I set the animInterval to a larger number and instead multiply the timer incrementation…
animTimer += Time.deltaTime*3;
if (animTimer >= animInterval) { //0.1f
the opposite happens: the sprite animation is speedier at lower fps.
Well, there is easy solution but I don’t know which one to pick up: use FixedUpdate instead (i’ve tried and it solves it), or code my own global timer or use InvokeRepeating. Which one do you think is the best ?
But also it scares me that gameplay related event based on tight timing might be completely biased on different hardware speed…
Thanks for your time,