Skip to content

Instantly share code, notes, and snippets.

View corecode1's full-sized avatar
🎯
Focusing

atsymbaliuk corecode1

🎯
Focusing
View GitHub Profile
@Fonserbc
Fonserbc / Easing.cs
Last active July 21, 2025 06:51
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