21 lines
328 B
C#
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;
|
|
}
|