This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,50 @@
using System;
using Cpp2IlInjected;
using RecRoom.Core.UI;
using UnityEngine;
namespace RecRoom.EditorScripts
{
// Token: 0x02002A5D RID: 10845
[Token(Token = "0x2002A5D")]
public class UITestingInputModuleUpdater : MonoBehaviour
{
// Token: 0x060120DC RID: 73948 RVA: 0x00416E98 File Offset: 0x00415098
[Token(Token = "0x60120DC")]
[Address(RVA = "0x1287510", Offset = "0x1286510", VA = "0x181287510")]
private void Update()
{
Camera main = Camera.main;
int num = 0;
if (!(main == num))
{
float z = Input.mousePosition.z;
UIInputModule uiinputModule = this.inputModule;
Vector3 vector;
float z2 = vector.z;
UIInputModule uiinputModule2 = this.inputModule;
bool mouseButtonDown = Input.GetMouseButtonDown(0);
bool mouseButtonUp = Input.GetMouseButtonUp(0);
Vector2 mouseScrollDelta = Input.mouseScrollDelta;
}
}
// Token: 0x060120DD RID: 73949 RVA: 0x00416F04 File Offset: 0x00415104
[Token(Token = "0x60120DD")]
[Address(RVA = "0x428AD0", Offset = "0x427AD0", VA = "0x180428AD0")]
public UITestingInputModuleUpdater()
{
}
// Token: 0x0400B931 RID: 47409
[Token(Token = "0x400B931")]
private const int OIILGGLEOHD = 0;
// Token: 0x0400B932 RID: 47410
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400B932")]
[SerializeField]
[NKNLDEIPALE(FHBJCBPFODN.Self, false, false, false)]
private UIInputModule inputModule;
}
}
@@ -0,0 +1,86 @@
using System;
using Cpp2IlInjected;
using UnityEngine;
namespace RecRoom.EditorScripts
{
// Token: 0x02002A5E RID: 10846
[Token(Token = "0x2002A5E")]
public class UITestingSceneInitialization : MonoBehaviour
{
// Token: 0x060120DE RID: 73950 RVA: 0x00416F18 File Offset: 0x00415118
[Token(Token = "0x60120DE")]
[Address(RVA = "0x1287940", Offset = "0x1286940", VA = "0x181287940")]
private void Start()
{
this.DBDDKLHPNNA = "This scene is Editor Only!";
this.MOPOMPHBHKF = "Ask Bilal if you are confused.";
}
// Token: 0x060120DF RID: 73951 RVA: 0x00416F3C File Offset: 0x0041513C
[Token(Token = "0x60120DF")]
[Address(RVA = "0x12876E0", Offset = "0x12866E0", VA = "0x1812876E0")]
private void OnGUI()
{
if (this.NDKGMJACAMH == (ulong)0L)
{
GUIStyle guistyle = new GUIStyle();
this.NDKGMJACAMH = guistyle;
guistyle.fontSize = 20;
GUIStyleState normal = this.NDKGMJACAMH.normal;
Color green = Color.green;
}
if (this.KBJFNCNFDJH == (ulong)0L)
{
GUIStyle guistyle2 = new GUIStyle();
this.KBJFNCNFDJH = guistyle2;
guistyle2.fontSize = 18;
GUIStyleState normal2 = this.KBJFNCNFDJH.normal;
Color red = Color.red;
}
GUILayout.BeginArea(0);
GUIStyle box = GUI.skin.box;
string dbddklhpnna = this.DBDDKLHPNNA;
string mopomphbhkf = this.MOPOMPHBHKF;
GUILayout.EndVertical();
}
// Token: 0x060120E0 RID: 73952 RVA: 0x00416FE4 File Offset: 0x004151E4
[Token(Token = "0x60120E0")]
[Address(RVA = "0x12879A0", Offset = "0x12869A0", VA = "0x1812879A0")]
public UITestingSceneInitialization()
{
}
// Token: 0x0400B933 RID: 47411
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400B933")]
[SerializeField]
private bool waitForInitializations = true;
// Token: 0x0400B934 RID: 47412
[FieldOffset(Offset = "0x19")]
[Token(Token = "0x400B934")]
private bool ACCHLGDLFIJ;
// Token: 0x0400B935 RID: 47413
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400B935")]
private string DBDDKLHPNNA = "";
// Token: 0x0400B936 RID: 47414
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400B936")]
private string MOPOMPHBHKF;
// Token: 0x0400B937 RID: 47415
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x400B937")]
private GUIStyle NDKGMJACAMH;
// Token: 0x0400B938 RID: 47416
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400B938")]
private GUIStyle KBJFNCNFDJH;
}
}