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;
namespace UnityEngine
{
// Token: 0x02000260 RID: 608
public enum FocusType
{
// Token: 0x04000749 RID: 1865
[Obsolete("FocusType.Native now behaves the same as FocusType.Passive in all OS cases. (UnityUpgradable) -> Passive", false)]
Native,
// Token: 0x0400074A RID: 1866
Keyboard,
// Token: 0x0400074B RID: 1867
Passive
}
}