Fix eye zoom lerp (#19377)

This commit is contained in:
metalgearsloth
2023-08-25 14:41:04 +10:00
committed by GitHub
parent a8bac1f91f
commit 1ba517ec84
5 changed files with 57 additions and 61 deletions

View File

@@ -1,3 +1,5 @@
using System.Numerics;
namespace Content.Client.Eye;
/// <summary>
@@ -16,4 +18,10 @@ public sealed partial class LerpingEyeComponent : Component
[ViewVariables]
public Angle TargetRotation;
[ViewVariables]
public Vector2 LastZoom;
[ViewVariables]
public Vector2 TargetZoom;
}