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
+20
View File
@@ -0,0 +1,20 @@
using System;
namespace UnityEngine.Rendering
{
// Token: 0x02000411 RID: 1041
[Flags]
public enum ColorWriteMask
{
// Token: 0x04000EC2 RID: 3778
Alpha = 1,
// Token: 0x04000EC3 RID: 3779
Blue = 2,
// Token: 0x04000EC4 RID: 3780
Green = 4,
// Token: 0x04000EC5 RID: 3781
Red = 8,
// Token: 0x04000EC6 RID: 3782
All = 15
}
}