Home

Awesome

Gween

Gween (go-between) is a small library to perform tweening in Go. It has a minimal interface, and it comes with several easing functions.

Examples

package gween

import (
  "github.com/tanema/gween/ease"
  "github.com/tanema/gween/gween"
)

// increase the value from 0 to 5 in 10 seconds
var tweenLinear = gween.New(0, 5, 10, ease.Linear)
current, isFinished := tweenLinear.Update(dt)

// make some text fall from the top of the screen, bouncing on y=300, in 4 seconds
var tweenLabel = gween.new(0, 300, 4, ease.OutBounce)
label.Y, _ = tweenLabel.Update(dt)

// fade background from white to black and foregrond from black to red in 2 seconds
currentBGColor = [4]float32{255, 255, 255, 255}
currentColor = [4]float32{0, 0, 0, 0}
var tweenBackground = gween.new(255, 0, 2, ease.Linear)
var tweenRed = gween.new(255, 0, 2, ease.Linear)
currentBG, _ := tweenBackground.Update(dt)
currentBGColor = [4]float32{currentBG, currentBG, currentBG, currentBG}
currentColor[0], _ = tweenRed.Update(dt)

// sequence increasing linearly from 0 to 4 over 10 seconds, 
// then decreasing outElastic 4 to 0 over 2 seconds
var sequence = gween.NewSequence(
  gween.New(0, 4, 10, ease.Linear),
  gween.New(4, 0, 2, ease.OutElastic),
)
// set to infinitely loop
sequence.SetLoop(-1)
val, tweenCompleted, seqenceCompleted = sequence.Update(dt)

Interface

Tween

Creation

t := gween.New(begin, end, duration, easingFunction)

Creates a new tween.

This function only creates and returns the tween. It must be captured in a variable and updated via t.Update(dt) in order for the changes to take place.

Methods

currentValue, isFinished := t.Update(dt)

Gradually changes the currentValue toward the end value as time passes.

When the tween is complete, the currentValue will be equal to the end value. The way they change over time will depend on the chosen easing function.

If dt is positive, the easing will be applied until the internal clock equals duration, at which point the easing will stop. If it is negative, the easing will play "backwards", until it reaches the initial value.

currentValue, isFinished := t.Set(clock)

Moves a tween's internal clock to a particular moment.

Sequence

Creation

s := gween.NewSeqence(tweens ...*Tween)

Sequences can be used to execute tweens in sequence. They also provide looping and "yoyo" functionality.

This function only creates and returns the sequence. It must be captured in a variable and updated via s.Update(dt) in order for the changes to take place.

Methods

currentValue, tweenCompleted, seqeuenceCompleted := s.Update(dt)

Gradually changes the currentValue from the begin value to the end value of each tween in the sequence as time passes. If a dt is too large for the current tween, the "overflow" amount will automatically be carried into the next tween until the entire dt is exhausted by the tweens in the sequence, or the sequence completes.

s.SetLoop(l)

Defaults to 1

Configures the sequence to "loop" l times. When l is -1, sequence will loop infinitely.

When used with s.SetYoyo(true), a single "loop" starts and ends at the beginning of the first tween; making its way out to the end of the final tween and back again.

s.SetYoyo(bool)

Defaults to false

Configures the sequence on whether to "yoyo" between the beginning of the first tween and the end of the last tween.

s.Reset()

Resets all tweens in the sequence and sets the "current" tween back to the first. Also, sets the remaining loop count back to the initial value last set using the .SetLoop() function (or 1 if using the default).

s.SetReverse(bool)

Defaults to false

Configures the sequence to run in "reverse" or not.

s.Add(tweens ...*Tween)

Adds the tweens provided, in order, at the end of the existing tween list

s.Remove(index)

Removes the tween at the desired index. If you call .Remove() on an index out of bounds, nothing happens.

Easing functions

Easing functions are functions that express how slow/fast the interpolation happens in tween.

Gween comes with 45 default easing functions already built-in (adapted from Enrique García Cota's easing library).

tween families

The easing functions can be found in the ease package.

They can be divided into several families:

Each family (except linear) has 4 variants:

familyinoutinOutoutIn
LinearLinearLinearLinearLinear
QuadInQuadOutQuadInOutQuadOutInQuad
CubicInCubicOutCubicInOutCubicOutInCubic
QuartInQuartOutQuartInOutQuartOutInQuart
QuintInQuintOutQuintInOutQuintOutInQuint
ExpoInExpoOutExpoInOutExpoOutInExpo
SineInSineOutSineInOutSineOutInSine
CircInCircOutCircInOutCircOutInCirc
BackInBackOutBackInOutBackOutInBack
BounceInBounceOutBounceInOutBounceOutInBounce
ElasticInElasticOutElasticInOutElasticOutInElastic

Custom easing functions

You are not limited to gween's easing functions; if you pass a function parameter in the easing, it will be used.

The passed function will need to suite the TweenFunc interface: func(t, b, c, d float32) float32

And must return the new value after the interpolation occurs.

Here's an example using a custom easing.

labelTween := tween.new(0, 300, 4, func(t, b, c, d) float32 {
  return c*t/d + b // linear ease
})

Credits

The easing functions have been translated from Enrique García Cota's project in

https://github.com/kikito/tween.lua

See the LICENSE file for details.