Tweening library for MonoGame.
This library is inspired by MonoTween.
- Coming soon!
- Interpolate float values
- Interpolate Vector2 values
- Interpolate Color values
- Easing functions:
- Linear
- Sine
- Quad
- Cube
- Quart
- Quint
- Circ
- Expo
- Back
- Elastic
- Bounce
var position = new Vector2Tween(new Vector2(50, 50), new Vector2(200, 200), 2000, Easing.SineIn)
.Wait(1000)
.Offset(new Vector2(-100, 0), 500, Easing.BounceOut)
.Yoyo()
.Loop();
// ...
TweenHelper.UpdateSetup(gameTime);
// ...
shapeBatch.DrawCircle(position.Value, 10f, Color.White, Color.Black, 2f);
- Apos.Gui - UI library for MonoGame.
- Apos.Input - Polling input library for MonoGame.
- Apos.Camera - Camera library for MonoGame.
- Apos.Shapes - Shape rendering in MonoGame.
- Apos.Spatial - Spatial partitioning library for MonoGame.