Skip to content

Instantly share code, notes, and snippets.

View daemon3000's full-sized avatar

Cristian Geambasu daemon3000

  • Bucharest, Romania
View GitHub Profile
@Fonserbc
Fonserbc / Easing.cs
Last active October 30, 2025 21:21
Compact and simple easing functions for Unity
using UnityEngine;
/*
* Most functions taken from Tween.js - Licensed under the MIT license
* at https://github.com/sole/tween.js
* Quadratic.Bezier by @fonserbc - Licensed under WTFPL license
*/
public delegate float EasingFunction(float k);
public class Easing