Questions tagged [tweening]
The creation, manual or algorithmic, of frames of animation 'twixt keyframes.
46 questions
0 votes
1 answer
195 views
How to use tweens to spin a wheel clockwise in Godot Engine?
How can I spin a roulette wheel in a clockwise direction using a tween? I've successfully managed to rotate counter-clockwise to the exact segment, but changing the direction to go clockwise is still ...
0 votes
1 answer
2k views
LeanTween | Rect Transform Moving To Incorrect Position
I am using LeanTween to animate my menu selector. This is how is looked prior to animating it with LeanTween: And when I animate it with Leantween, for some reason it is positioned much further away: ...
0 votes
1 answer
9k views
How to run a DOTween tween on float and apply it to a component on each update?
I am trying to use DOTween by tweening a float and then applying that float to the parameters of a gameObject's components on each update. In LeanTween, this was done like this: ...
0 votes
1 answer
267 views
Tween a pop-up containing several buttons
I am developing a small game with Phaser 3. I want to make a container with several buttons, representing a pop-up dialog. The container needs to pop up on completing a task. When container pops up, I ...
1 vote
1 answer
394 views
Godot tween animation playing order
I'm making a three in line game with godot, but i'm having an issue. First time when swapping cells, the animation of swapping and the elimination of cells (in the case of making 3 or more cell ...
1 vote
0 answers
261 views
Unity animation: How to reset pivot after 3D character somersaults?
I have this new character animation that I made in Blender. None of my other animations use Root Transform or anything fancy, and they work great. This new one is special though. The character jumps ...
1 vote
0 answers
232 views
The gist of tweening with WebGL / OpenGL
I am trying to wrap my head around how to take advantage of shaders for things like tweening. For example, there are these simple easing equations, which we can use like this: ...
1 vote
1 answer
13k views
How do I restart tweens in DOTween and Unity?
I am trying to restart a couple of tweens when I load a new scene. So far, I have this in MainMenuController.cs : ...