cull(engine-cleanup): pass-8 phase-2 cascade round 3 after AreaSelectUI stub
This commit is contained in:
@@ -131,7 +131,6 @@ namespace UnityEngine
|
||||
public static float Clamp01(float v) => Math.Max(0f, Math.Min(1f, v));
|
||||
public static float Lerp(float a, float b, float t) => a + (b - a) * Clamp01(t);
|
||||
public static float SmoothDamp(float cur, float target, ref float vel, float time) { vel = 0; return target; }
|
||||
public static float SmoothDampAngle(float cur, float target, ref float vel, float time) { vel = 0; return target; }
|
||||
public static float Sin(float f) => (float)Math.Sin(f);
|
||||
public static float Cos(float f) => (float)Math.Cos(f);
|
||||
public static float Asin(float f) => (float)Math.Asin(f);
|
||||
|
||||
Reference in New Issue
Block a user