Files
NobetaSource/Cpp2IL/Assembly-CSharp/CameraSettings.cs
2023-09-06 22:19:13 +02:00

129 lines
4.1 KiB
C#

using System;
using Cpp2IlInjected;
// Token: 0x02000144 RID: 324
[Token(Token = "0x2000144")]
[Serializable]
public class CameraSettings
{
// Token: 0x06001008 RID: 4104 RVA: 0x00025168 File Offset: 0x00023368
[Token(Token = "0x6001008")]
[Address(RVA = "0xB91EF0", Offset = "0xB90EF0", VA = "0x180B91EF0")]
public CameraSettings SetDefault()
{
this.cameraDistance = (int)((ulong)1L);
this.cameraRotationSpeed = (int)((ulong)5L);
this.aimRotationSpeed = (int)((ulong)5L);
this.aimAssistance = true;
return this;
}
// Token: 0x06001009 RID: 4105 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x6001009")]
[Address(RVA = "0xB91E70", Offset = "0xB90E70", VA = "0x180B91E70")]
public float GetCameraDistance()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100A RID: 4106 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100A")]
[Address(RVA = "0xB91E90", Offset = "0xB90E90", VA = "0x180B91E90")]
public float GetCameraRotationValueX()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100B RID: 4107 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100B")]
[Address(RVA = "0xB91EB0", Offset = "0xB90EB0", VA = "0x180B91EB0")]
public float GetCameraRotationValueY()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100C RID: 4108 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100C")]
[Address(RVA = "0xB91E10", Offset = "0xB90E10", VA = "0x180B91E10")]
public float GetAimRotationValueX()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100D RID: 4109 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100D")]
[Address(RVA = "0xB91E30", Offset = "0xB90E30", VA = "0x180B91E30")]
public float GetAimRotationValueY()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100E RID: 4110 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100E")]
[Address(RVA = "0xB91ED0", Offset = "0xB90ED0", VA = "0x180B91ED0")]
public float GetCameraSceneRotSpeed()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600100F RID: 4111 RVA: 0x000020D3 File Offset: 0x000002D3
[Token(Token = "0x600100F")]
[Address(RVA = "0xB91E50", Offset = "0xB90E50", VA = "0x180B91E50")]
public float GetCameraAimRotSpeed()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06001010 RID: 4112 RVA: 0x00025198 File Offset: 0x00023398
[Token(Token = "0x6001010")]
[Address(RVA = "0xB91F10", Offset = "0xB90F10", VA = "0x180B91F10")]
public CameraSettings()
{
}
// Token: 0x04001A66 RID: 6758
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001A66")]
public int cameraDistance = (int)((ulong)1L);
// Token: 0x04001A67 RID: 6759
[FieldOffset(Offset = "0x14")]
[Token(Token = "0x4001A67")]
public bool reverseCameraHorizontally;
// Token: 0x04001A68 RID: 6760
[FieldOffset(Offset = "0x15")]
[Token(Token = "0x4001A68")]
public bool reverseCameraVertically;
// Token: 0x04001A69 RID: 6761
[FieldOffset(Offset = "0x16")]
[Token(Token = "0x4001A69")]
public bool reverseAimHorizontally;
// Token: 0x04001A6A RID: 6762
[FieldOffset(Offset = "0x17")]
[Token(Token = "0x4001A6A")]
public bool reverseAimVertically;
// Token: 0x04001A6B RID: 6763
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4001A6B")]
public int cameraRotationSpeed = (int)((ulong)5L);
// Token: 0x04001A6C RID: 6764
[FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4001A6C")]
public int aimRotationSpeed = (int)((ulong)5L);
// Token: 0x04001A6D RID: 6765
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4001A6D")]
public bool aimAssistance = true;
// Token: 0x04001A6E RID: 6766
[FieldOffset(Offset = "0x21")]
[Token(Token = "0x4001A6E")]
public bool autoSwitchAimTarget;
}