Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bulwark Studios

Pages: [1]
1
Indeed!
I will do that.

Thanks a lot!

2
Hi!

I have a speed control in my game (0.5x, 1x, 2x 4x, ...).
I'm using the DOTween.timeScale to speed up or slow down all of my tweens. And it works like a charm.
But I also use tweens for my UI part which I want the timescale set to 1.

There is a best practice to do that ?

I found a workaround: I'm setting the timeScale for each tween in a LateUpdate. (Still have a problem with a DOTween.timeScale = 0f)
void LateUpdate() {
        tween.timeScale = 1f / DOTween.timeScale;
}

Maybe i'm missing something there is a better way to do that ?

Thanks a lot!

Pages: [1]