This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,29 @@
using System;
// Token: 0x020004D4 RID: 1236
[Serializable]
public class PhotonTransformViewRotationModel
{
// Token: 0x04001D07 RID: 7431
public bool SynchronizeEnabled;
// Token: 0x04001D08 RID: 7432
public PhotonTransformViewRotationModel.PIDCMCKLDAG InterpolateOption = PhotonTransformViewRotationModel.PIDCMCKLDAG.RotateTowards;
// Token: 0x04001D09 RID: 7433
public float InterpolateRotateTowardsSpeed = 180f;
// Token: 0x04001D0A RID: 7434
public float InterpolateLerpSpeed = 5f;
// Token: 0x020004D5 RID: 1237
public enum PIDCMCKLDAG
{
// Token: 0x04001D0C RID: 7436
Disabled,
// Token: 0x04001D0D RID: 7437
RotateTowards,
// Token: 0x04001D0E RID: 7438
Lerp
}
}