Skip to main content

Questions tagged [easing]

Easing functions specify the rate of change of a parameter over time.

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

I am stuck with rotating a GameObject on the Z axis with easing. I want to achieve an effect like in this game: Here, the ring of targets starts rotating periodically. It starts slower, than ...
Taras Fityo's user avatar
0 votes
1 answer
57 views

I'm trying to solve a challenge with linearity of my animation. Let say we have a Tug of war mechanic. One team is much stronger and it moves line from point A(0) to point B(10) with a speed of 1 unit ...
Ardoos's user avatar
  • 29
0 votes
1 answer
613 views

Here is the code I am using: ...
Daniel Lip's user avatar
  • 1,785
2 votes
1 answer
86 views

I'm trying to make an indicator object appear higher up in the sky the farther away a player is, up to a certain distance. Basically, if the player is < 5 distance away, the object's height should ...
user1960364's user avatar
0 votes
1 answer
474 views

I'm currently struggling to find a good approach for an easing class for my game. The class holds some easing effects, like elastic-in-out, and should be called by menu buttons, players and enemies ...
elasticman's user avatar
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
1 vote
1 answer
221 views

I am looking for an easing equation with the following properties: It starts at a velocity of zero, and eases into a constant velocity of 1 for a duration of t_1 ...
mklingen's user avatar
  • 3,667
15 votes
3 answers
6k views

I found this cool website for game development and it has a list of easing functions: Although the site contains a description of what they're for, it goes over my head. What are easing functions ...
Daniel Kaplan's user avatar
4 votes
1 answer
1k views

I would like to find out what Y is if X is a certain number from a cubic bezier curve to make a custom easing function, like it's done on this site: http://cubic-bezier.com/ Does anyone know a formula ...
user1974555's user avatar
1 vote
2 answers
415 views

Usually easing equations have 4 parameters: time duration begin point end point For example: ...
Heisenbug's user avatar
  • 2,154
9 votes
2 answers
3k views

I want to simulate a rope with a weight attached, swinging back and forth like a pendulum. Any actual physics is overkill; it's just endlessly repeating the same motion. JQuery has a the "swing" ease ...
mjanisz1's user avatar
  • 247
2 votes
2 answers
1k views

I'm working in JavaScript with HTML5 and the canvas. I have an object which is rotating at a certain speed, and I need the object's rotation to slow down gradually and the front of the object to stop ...
Krummelz's user avatar
  • 123
4 votes
4 answers
1k views

Hey. I'm trying to create an enemy that travels at a speed s on screen but I'm having trouble with trying to make the speed vary in a smooth motion. Basically, I ...
Skoder's user avatar
  • 367