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

21 lines
377 B
C#

using System;
[Serializable]
public class PhotonTransformViewRotationModel
{
public enum InterpolateOptions
{
Disabled = 0,
RotateTowards = 1,
Lerp = 2
}
public bool SynchronizeEnabled;
public InterpolateOptions InterpolateOption = InterpolateOptions.RotateTowards;
public float InterpolateRotateTowardsSpeed = 180f;
public float InterpolateLerpSpeed = 5f;
}