TextEdit control & a bunch of other stuff (#3436)

This commit is contained in:
Pieter-Jan Briers
2022-11-12 03:12:49 +01:00
committed by GitHub
parent db95c6284b
commit e34935c9e2
56 changed files with 4244 additions and 532 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace Robust.Shared.Maths;
// Reference: https://easings.net/
internal static class Easings
{
public static float InOutQuint(float p)
{
return p < 0.5f ? (16 * p * p * p * p * p) : 1 - MathF.Pow(-2 * p + 2, 5) / 2;
}
}

View File

@@ -4,5 +4,6 @@
[module: SkipLocalsInit]
#endif
[assembly: InternalsVisibleTo("Robust.Client")]
[assembly: InternalsVisibleTo("Robust.UnitTesting")]
[assembly: InternalsVisibleTo("Content.Benchmarks")]