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
+16
View File
@@ -0,0 +1,16 @@
using System;
using UnityEngine;
// Token: 0x02001157 RID: 4439
[RequireComponent(typeof(Camera))]
public class ScreenshotGenerator : MonoBehaviour
{
// Token: 0x04005FD5 RID: 24533
public int Width = 1920;
// Token: 0x04005FD6 RID: 24534
public int Height = 1080;
// Token: 0x04005FD7 RID: 24535
public int AntiAliasLevel = 8;
}