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
+17
View File
@@ -0,0 +1,17 @@
using System;
namespace UnityEngine
{
// Token: 0x020003FB RID: 1019
public enum TextureWrapMode
{
// Token: 0x04000DE7 RID: 3559
Repeat,
// Token: 0x04000DE8 RID: 3560
Clamp,
// Token: 0x04000DE9 RID: 3561
Mirror,
// Token: 0x04000DEA RID: 3562
MirrorOnce
}
}