Skip to content

Instantly share code, notes, and snippets.

View CWentz's full-sized avatar

Chad Wentz CWentz

  • Games Academy Student
View GitHub Profile
@CWentz
CWentz / EasingExtensions.cs
Created April 18, 2023 20:00
Easing extension for VisualElements experimental animations
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UIElements;
using UnityEngine.UIElements.Experimental;
public static class EasingExtensions
{
private static Dictionary<EasingMode, Func<float, float>> _funcs = new ();