A game framework written with osu! in mind.
at master 48 lines 964 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Graphics 5{ 6 /// <summary> 7 /// See http://easings.net/ for more samples. 8 /// </summary> 9 public enum Easing 10 { 11 None, 12 Out, 13 In, 14 InQuad, 15 OutQuad, 16 InOutQuad, 17 InCubic, 18 OutCubic, 19 InOutCubic, 20 InQuart, 21 OutQuart, 22 InOutQuart, 23 InQuint, 24 OutQuint, 25 InOutQuint, 26 InSine, 27 OutSine, 28 InOutSine, 29 InExpo, 30 OutExpo, 31 InOutExpo, 32 InCirc, 33 OutCirc, 34 InOutCirc, 35 InElastic, 36 OutElastic, 37 OutElasticHalf, 38 OutElasticQuarter, 39 InOutElastic, 40 InBack, 41 OutBack, 42 InOutBack, 43 InBounce, 44 OutBounce, 45 InOutBounce, 46 OutPow10, 47 } 48}