Skip to main content

Questions tagged [tweening]

The creation, manual or algorithmic, of frames of animation 'twixt keyframes.

Filter by
Sorted by
Tagged with
0 votes
1 answer
195 views

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 ...
boruok's user avatar
  • 13
0 votes
1 answer
2k views

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: ...
PayasoPrince's user avatar
0 votes
1 answer
9k views

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: ...
mike's user avatar
  • 501
0 votes
1 answer
267 views

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 ...
bhagya's user avatar
  • 11
1 vote
1 answer
394 views

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 ...
Progs's user avatar
  • 95
1 vote
0 answers
261 views

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 ...
hatinacat2000's user avatar
1 vote
0 answers
232 views

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: ...
user10869858's user avatar
1 vote
1 answer
13k views

I am trying to restart a couple of tweens when I load a new scene. So far, I have this in MainMenuController.cs : ...
vkainth's user avatar
  • 13
0 votes
1 answer
2k views

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 ...
ShivGames's user avatar
  • 105
0 votes
1 answer
492 views

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: ...
Jacob's user avatar
  • 2,552
7 votes
4 answers
4k views

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 ...
Jackson's user avatar
  • 231
0 votes
1 answer
929 views

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: ...
Oliver Schöning's user avatar
0 votes
1 answer
336 views

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 ...
resfever's user avatar
1 vote
1 answer
676 views

How can i control the speed of a tweening sprite? Here is the code: in create () ...
hkguile's user avatar
  • 193
2 votes
1 answer
184 views

  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 ...
Manny Adumbire's user avatar
0 votes
2 answers
1k views

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 ...
ktsangop's user avatar
  • 143
2 votes
1 answer
370 views

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 ...
ibrabeicker's user avatar
  • 2,951
1 vote
1 answer
7k views

I have this code for rendering a sprite, retrieved from a TextureAtlas ...
UberLambda's user avatar
1 vote
1 answer
331 views

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 ...
Robin Rodricks's user avatar
0 votes
1 answer
543 views

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: ...
philipp's user avatar
  • 389
2 votes
1 answer
195 views

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, ...
Paul's user avatar
  • 679
1 vote
1 answer
2k views

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'...
loogie's user avatar
  • 13
3 votes
3 answers
551 views

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 ...
user avatar