Files
Aug2021-Cpp2IL-Dump/Unity.RenderPipelines.Universal.Runtime/UnityEngine/Rendering/Universal/ChannelMixer.cs
T
2026-04-10 22:50:51 +02:00

90 lines
2.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace UnityEngine.Rendering.Universal
{
// Token: 0x02000037 RID: 55
[Token(Token = "0x2000031")]
[VolumeComponentMenu("Post-processing/Channel Mixer")]
[Serializable]
public sealed class ChannelMixer : VolumeComponent, IPostProcessComponent
{
// Token: 0x060000C2 RID: 194 RVA: 0x000027F0 File Offset: 0x000009F0
[Token(Token = "0x60000BA")]
[Address(RVA = "0x19C90C0", Offset = "0x19C7EC0", VA = "0x1819C90C0", Slot = "8")]
public bool IsActive()
{
return default(bool);
}
// Token: 0x060000C3 RID: 195 RVA: 0x00002808 File Offset: 0x00000A08
[Token(Token = "0x60000BB")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "9")]
public bool IsTileCompatible()
{
return default(bool);
}
// Token: 0x060000C4 RID: 196 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60000BC")]
[Address(RVA = "0x19C9260", Offset = "0x19C8060", VA = "0x1819C9260")]
public ChannelMixer()
{
}
// Token: 0x04000131 RID: 305
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400010E")]
[Tooltip("Modify influence of the red channel in the overall mix.")]
public ClampedFloatParameter redOutRedIn;
// Token: 0x04000132 RID: 306
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x400010F")]
[Tooltip("Modify influence of the green channel in the overall mix.")]
public ClampedFloatParameter redOutGreenIn;
// Token: 0x04000133 RID: 307
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4000110")]
[Tooltip("Modify influence of the blue channel in the overall mix.")]
public ClampedFloatParameter redOutBlueIn;
// Token: 0x04000134 RID: 308
[FieldOffset(Offset = "0x50")]
[Token(Token = "0x4000111")]
[Tooltip("Modify influence of the red channel in the overall mix.")]
public ClampedFloatParameter greenOutRedIn;
// Token: 0x04000135 RID: 309
[FieldOffset(Offset = "0x58")]
[Token(Token = "0x4000112")]
[Tooltip("Modify influence of the green channel in the overall mix.")]
public ClampedFloatParameter greenOutGreenIn;
// Token: 0x04000136 RID: 310
[FieldOffset(Offset = "0x60")]
[Token(Token = "0x4000113")]
[Tooltip("Modify influence of the blue channel in the overall mix.")]
public ClampedFloatParameter greenOutBlueIn;
// Token: 0x04000137 RID: 311
[FieldOffset(Offset = "0x68")]
[Token(Token = "0x4000114")]
[Tooltip("Modify influence of the red channel in the overall mix.")]
public ClampedFloatParameter blueOutRedIn;
// Token: 0x04000138 RID: 312
[FieldOffset(Offset = "0x70")]
[Token(Token = "0x4000115")]
[Tooltip("Modify influence of the green channel in the overall mix.")]
public ClampedFloatParameter blueOutGreenIn;
// Token: 0x04000139 RID: 313
[FieldOffset(Offset = "0x78")]
[Token(Token = "0x4000116")]
[Tooltip("Modify influence of the blue channel in the overall mix.")]
public ClampedFloatParameter blueOutBlueIn;
}
}