Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/PhotonTransformViewScaleModel.cs
2026-02-21 16:45:37 +08:00

21 lines
328 B
C#

using System;
[Serializable]
public class PhotonTransformViewScaleModel
{
public enum InterpolateOptions
{
Disabled = 0,
MoveTowards = 1,
Lerp = 2
}
public bool SynchronizeEnabled;
public InterpolateOptions InterpolateOption;
public float InterpolateMoveTowardsSpeed = 1f;
public float InterpolateLerpSpeed;
}