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 :
...
0
votes
1
answer
2k
views
Smooth Camera Movement Java
So, I'm making a platformer game from scratch in Java and I am trying to make the camera movement smoother. Here is what it currently is
...
0
votes
1
answer
492
views
Libgdx, TweenEngine - continous rotation animation without stopping/delay
I have a probably dumb question.
I'm trying to create a LoadingCircle so I just picked one image (you can see in the attachment) and made some sequences to rotate it:
...
7
votes
4
answers
4k
views
Interpolation using cubic Bezier curves
I am trying to create an interpolate function for an animation library to achieve a tweening effect between frames.
I want this to work with Bezier curves. I have created a jsFiddle (here) of my ...
0
votes
1
answer
929
views
Tween - keeping a constant velocity at different distances
I am using a tweening library to move my units around. The problem is that the speed varies depending on the distance that the unit has to move because of the tweening:
...
0
votes
1
answer
336
views
The import aurelienribon cannot be resolved
I've been having problems with using the Tween Engine by aurelien ribon for a Splash Screen for my 2d game. I'm using Eclipse and libgdx.
I've tried rebuilding, clean...-ing, and refreshing.
I've ...
1
vote
1
answer
676
views
libgdx universal tween engine how to control the tweening speed?
How can i control the speed of a tweening sprite? Here is the code:
in create ()
...
2
votes
1
answer
184
views
Gaps appearing between Sprites when scaling the stage
I'm learning to use createjs using this game level to-be as a sandbox: http://www.mboyeman.com/dashingdog/
The level is composed of a single background image and 64X64pixel ...
0
votes
2
answers
1k
views
Tweening multiple image objects in html5/js
Is there an optimal way to choose when tweening multiple images as a single image?
For example let's say i have 10 preloaded image objects in my script, and i want to place them one on top of the ...
2
votes
1
answer
370
views
Universal Tween Engine - simulating time T instantaneously
I have a circuit in Universal Tween Engine in libgdx and I want to make several entities follow this path
, each behind the other, like body pieces of a snake. The problem is that I need to find the ...
1
vote
1
answer
7k
views
Animations not working on custom actor in LibGDX
I have this code for rendering a sprite, retrieved from a TextureAtlas
...
1
vote
1
answer
331
views
How to linearly "blend" between multiple 3D points?
I have a set of 3D points that I need to "blend" between. Lets say I have points [A,B,C] and I have the amount I want to blend each as [0.5, 0.2, 0.8], how can I blend between these points ...
0
votes
1
answer
543
views
box2d tween what am I missing
I have a Box2D project and I want to tween an kinematic body from position A, to position B. The tween function, got it from this blog:
...
2
votes
1
answer
195
views
Is there a way to export all the images of my tweening effect in Flash?
i'm using Flash to create the animation of my character in 2D (i'm just beginning). Is it possible to make a tween effect of a character, and then automatically export all the images/frames?
So far, ...
1
vote
1
answer
2k
views
Creating an abstract Animation class
I'm creating a simple 2d game with c++ and SFML, and I've got a simple framework going for animating a sprite using a "SpriteSheet" image (an big image containing all the "frames" of an animation)
I'...
3
votes
3
answers
551
views
Blending animations for more character movements
I am making a hack n slash 3rd person game, and I want the character movements to be more dynamic not like fighting games where you have a moves list.
I want to animate tons of different animations ...