Skip to content

Instantly share code, notes, and snippets.

View brettmjohnson's full-sized avatar

Brett Johnson brettmjohnson

View GitHub Profile
@brettmjohnson
brettmjohnson / Easing.cs
Last active May 6, 2019 16:39 — forked from Fonserbc/Easing.cs
Compact and simple easing functions for Unity
using UnityEngine;
// Functions taken from Tween.js - Licensed under the MIT license at https://github.com/sole/tween.js
public static class Easing
{
public enum EasingType
{
Linear,
SineIn,
SineOut,