Questions tagged [easing]
Easing functions specify the rate of change of a parameter over time.
26 questions
0
votes
1
answer
252
views
Rotating on Z axis with easing
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 ...
0
votes
1
answer
57
views
Make linear parameter change seem chaotic
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 ...
0
votes
1
answer
613
views
How can I ease in and out of a Lerp motion over a set duration?
Here is the code I am using:
...
2
votes
1
answer
86
views
Raise/Lower Object Height Based on Distance, with Easing
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 ...
0
votes
1
answer
474
views
How should I design an easing class in C++?
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 ...
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 ...
1
vote
1
answer
221
views
Looking for an easing equation
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 ...
15
votes
3
answers
6k
views
What are easing functions?
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 ...
4
votes
1
answer
1k
views
Cubic bezier for easing?
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 ...
1
vote
2
answers
415
views
Easing equations with moving end points
Usually easing equations have 4 parameters:
time
duration
begin point
end point
For example:
...
9
votes
2
answers
3k
views
How do I simulate a swinging pendulum?
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 ...
2
votes
2
answers
1k
views
Stop a rotating object at a specified angle?
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 ...
4
votes
4
answers
1k
views
Vary speed of enemy smoothly
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 ...