This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,50 @@
using System;
using Cpp2IlInjected;
using RecRoom.Core.UI;
using UnityEngine;
namespace RecRoom.EditorScripts
{
// Token: 0x02002974 RID: 10612
[Token(Token = "0x2002974")]
public class UITestingInputModuleUpdater : MonoBehaviour
{
// Token: 0x06011CA0 RID: 72864 RVA: 0x0040D4C8 File Offset: 0x0040B6C8
[Token(Token = "0x6011CA0")]
[Address(RVA = "0x81B240", Offset = "0x81A040", VA = "0x18081B240")]
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: 0x06011CA1 RID: 72865 RVA: 0x0040D534 File Offset: 0x0040B734
[Token(Token = "0x6011CA1")]
[Address(RVA = "0x74EA40", Offset = "0x74D840", VA = "0x18074EA40")]
public UITestingInputModuleUpdater()
{
}
// Token: 0x0400B721 RID: 46881
[Token(Token = "0x400B721")]
private const int OIILGGLEOHD = 0;
// Token: 0x0400B722 RID: 46882
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400B722")]
[SerializeField]
[DDPIINEJFMD(JIBDPHMGEGO.Self, false, false, false)]
private UIInputModule inputModule;
}
}
@@ -0,0 +1,86 @@
using System;
using Cpp2IlInjected;
using UnityEngine;
namespace RecRoom.EditorScripts
{
// Token: 0x02002975 RID: 10613
[Token(Token = "0x2002975")]
public class UITestingSceneInitialization : MonoBehaviour
{
// Token: 0x06011CA2 RID: 72866 RVA: 0x0040D548 File Offset: 0x0040B748
[Token(Token = "0x6011CA2")]
[Address(RVA = "0x81B670", Offset = "0x81A470", VA = "0x18081B670")]
private void Start()
{
this.DBDDKLHPNNA = "This scene is Editor Only!";
this.MOPOMPHBHKF = "Ask Bilal if you are confused.";
}
// Token: 0x06011CA3 RID: 72867 RVA: 0x0040D56C File Offset: 0x0040B76C
[Token(Token = "0x6011CA3")]
[Address(RVA = "0x81B410", Offset = "0x81A210", VA = "0x18081B410")]
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: 0x06011CA4 RID: 72868 RVA: 0x0040D614 File Offset: 0x0040B814
[Token(Token = "0x6011CA4")]
[Address(RVA = "0x81B6D0", Offset = "0x81A4D0", VA = "0x18081B6D0")]
public UITestingSceneInitialization()
{
}
// Token: 0x0400B723 RID: 46883
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400B723")]
[SerializeField]
private bool waitForInitializations = true;
// Token: 0x0400B724 RID: 46884
[FieldOffset(Offset = "0x19")]
[Token(Token = "0x400B724")]
private bool ACCHLGDLFIJ;
// Token: 0x0400B725 RID: 46885
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400B725")]
private string DBDDKLHPNNA = "";
// Token: 0x0400B726 RID: 46886
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400B726")]
private string MOPOMPHBHKF;
// Token: 0x0400B727 RID: 46887
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x400B727")]
private GUIStyle NDKGMJACAMH;
// Token: 0x0400B728 RID: 46888
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400B728")]
private GUIStyle KBJFNCNFDJH;
}
}