using System; using UnityEngine; using UnityEngine.UI; using UnityEngine.VR; // Token: 0x02000454 RID: 1108 public class OVRDebugInfo : MonoBehaviour { // Token: 0x0600B6DD RID: 46813 RVA: 0x00366310 File Offset: 0x00364510 private void PKAAOOHBGPF() { float num = OVRManager.HPMPJMIOMCK.EKHEBHHBOJG(); this.EKNGGCAOPKG = string.Format("Player.PlayerLocomotion", num); } // Token: 0x0600B6DE RID: 46814 RVA: 0x00366340 File Offset: 0x00364540 private void OPKONLAHLMG() { float num = OVRManager.HPMPJMIOMCK.BGFAGPOFNIM(); this.EKNGGCAOPKG = string.Format("MM\\/dd\\/yyyy HH:mm", num); } // Token: 0x0600B6DF RID: 46815 RVA: 0x00366370 File Offset: 0x00364570 private void ILDIAFLJPID() { this.NGEOAOBLEEI(); this.OPKONLAHLMG(); this.PCPJADFDPMI(); this.FJLJNLLHCJP(); this.ALCAMCGOICF(); this.BCGDCAFADNB(); this.HLJFFMJIJEK(); } // Token: 0x0600B6E0 RID: 46816 RVA: 0x0036639C File Offset: 0x0036459C private void FLILJLLEAFK() { float num = 31f; int num2 = 83; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "SetOutfitToPlayer has null player. BodyPart : "; this.OALPPBNOLMM.transform.parent = GameObject.Find("MenuDetached").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1738f, 721f, 1429f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(660f, 971f, 132f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.POFHOGJJHJK(this.DHGGMAIAIFI, "value", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.DGMCIOBFDDE(this.KAPDKINJIGO, "
using System;\r\nusing UnityEngine;\r\nusing BestHTTP;\r\nusing BestHTTP.WebSocket;\r\n\r\npublic class WebSocketSample : MonoBehaviour\r\n{\r\n    #region Private Fields\r\n\r\n    /// <summary>\r\n    /// The WebSocket address to connect\r\n    /// </summary>\r\n    string address = "ws://echo.websocket.org";\r\n\r\n    /// <summary>\r\n    /// Default text to send\r\n    /// </summary>\r\n    string msgToSend = "Hello World!";\r\n\r\n    /// <summary>\r\n    /// Debug text to draw on the gui\r\n    /// </summary>\r\n    string Text = string.Empty;\r\n\r\n    /// <summary>\r\n    /// Saved WebSocket instance\r\n    /// </summary>\r\n    WebSocket webSocket;\r\n\r\n    /// <summary>\r\n    /// GUI scroll position\r\n    /// </summary>\r\n    Vector2 scrollPos;\r\n\r\n    #endregion\r\n\r\n    #region Unity Events\r\n\r\n    void OnDestroy()\r\n    {\r\n        if (webSocket != null)\r\n            webSocket.Close();\r\n    }\r\n\r\n    void OnGUI()\r\n    {\r\n        GUIHelper.DrawArea(GUIHelper.ClientArea, true, () =>\r\n            {\r\n                scrollPos = GUILayout.BeginScrollView(scrollPos);\r\n                    GUILayout.Label(Text);\r\n                GUILayout.EndScrollView();\r\n\r\n                GUILayout.Space(5);\r\n\r\n                GUILayout.FlexibleSpace();\r\n\r\n                address = GUILayout.TextField(address);\r\n\r\n                if (webSocket == null && GUILayout.Button("Open Web Socket"))\r\n                {\r\n                    // Create the WebSocket instance\r\n                    webSocket = new WebSocket(new Uri(address));\r\n\r\n                    if (HTTPManager.Proxy != null)\r\n                        webSocket.InternalRequest.Proxy = new HTTPProxy(HTTPManager.Proxy.Address, HTTPManager.Proxy.Credentials, false);\r\n\r\n                    // Subscribe to the WS events\r\n                    webSocket.OnOpen += OnOpen;\r\n                    webSocket.OnMessage += OnMessageReceived;\r\n                    webSocket.OnClosed += OnClosed;\r\n                    webSocket.OnError += OnError;\r\n\r\n                    // Start connecting to the server\r\n                    webSocket.Open();\r\n\r\n                    Text += "Opening Web Socket...\\n";\r\n                }\r\n\r\n                if (webSocket != null && webSocket.IsOpen)\r\n                {\r\n                    GUILayout.Space(10);\r\n\r\n                    GUILayout.BeginHorizontal();\r\n                        msgToSend = GUILayout.TextField(msgToSend);\r\n\r\n                        if (GUILayout.Button("Send"GUILayout.MaxWidth(70)))\r\n                        {\r\n                            Text += "Sending message...\\n";\r\n\r\n                            // Send message to the server\r\n                            webSocket.Send(msgToSend);\r\n                        }\r\n                    GUILayout.EndHorizontal();\r\n\r\n                    GUILayout.Space(10);\r\n\r\n                    if (GUILayout.Button("Close"))\r\n                    {\r\n                        // Close the connection\r\n                        webSocket.Close(1000, "Bye!");\r\n                    }\r\n                }\r\n            });\r\n    }\r\n\r\n    #endregion\r\n\r\n    #region WebSocket Event Handlers\r\n\r\n    /// <summary>\r\n    /// Called when the web socket is open, and we are ready to send and receive data\r\n    /// </summary>\r\n    void OnOpen(WebSocket ws)\r\n    {\r\n        Text += string.Format("-WebSocket Open!\\n");\r\n    }\r\n\r\n    /// <summary>\r\n    /// Called when we received a text message from the server\r\n    /// </summary>\r\n    void OnMessageReceived(WebSocket ws, string message)\r\n    {\r\n        Text += string.Format("-Message received: {0}\\n", message);\r\n    }\r\n\r\n    /// <summary>\r\n    /// Called when the web socket closed\r\n    /// </summary>\r\n    void OnClosed(WebSocket ws, UInt16 code, string message)\r\n    {\r\n        Text += string.Format("-WebSocket closed! Code: {0} Message: {1}\\n", code, message);\r\n        webSocket = null;\r\n    }\r\n\r\n    /// <summary>\r\n    /// Called when an error occured on client side\r\n    /// </summary>\r\n    void OnError(WebSocket ws, Exception ex)\r\n    {\r\n        string errorMsg = string.Empty;\r\n        if (ws.InternalRequest.Response != null)\r\n            errorMsg = string.Format("Status Code from Server: {0} and Message: {1}", ws.InternalRequest.Response.StatusCode, ws.InternalRequest.Response.Message);\r\n\r\n        Text += string.Format("-An error occured: {0}\\n", (ex != null ? ex.Message : "Unknown Error " + errorMsg));\r\n\r\n        webSocket = null;\r\n    }\r\n\r\n    #endregion\r\n}
", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.DGMCIOBFDDE(this.IGNBGONNBDN, "Turn off sandbox to re-enable Challenges", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.DGMCIOBFDDE(this.DLKBIFHEFMN, "ENABLED", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.POFHOGJJHJK(this.GABAGADECPG, "speed", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.AEAABCKCGHF(this.NEOLIDNMPBD, "pitch", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.CIJLLINMEPA(this.IEPOECBGJIP, "Item", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, 43); } this.CEGGPKFIGPP = true; this.BCADICDODHH = false; } // Token: 0x0600B6E1 RID: 46817 RVA: 0x003665E8 File Offset: 0x003647E8 private void NGOPCBJCNJM() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "', RecRoomSceneManager is null."; this.IHJDPNKKKEE.transform.parent = GameObject.Find("{0}v1/saveData/{1}").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(92f, 270f); rectTransform.localScale = new Vector3(329f, 286f, 532f); rectTransform.localPosition = new Vector3(228f, 1106f, 1587f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = RenderMode.WorldSpace; canvas.pixelPerfect = false; } // Token: 0x0600B6E2 RID: 46818 RVA: 0x003666AC File Offset: 0x003648AC private GameObject AJHCMNGFEBL(GameObject NJLAHDPMHEK) { NJLAHDPMHEK = new GameObject(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.GetComponent().sizeDelta = new Vector2(752f, 272f); NJLAHDPMHEK.GetComponent().color = new Color(1081f, 1838f, 78f, 1223f); this.KCEPEHHEMLL = new GameObject(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.GetComponent().sizeDelta = new Vector2(231f, 667f); this.KCEPEHHEMLL.GetComponent().font = Resources.GetBuiltinResource(typeof(Font), "money") as Font; this.KCEPEHHEMLL.GetComponent().alignment = TextAnchor.MiddleCenter; this.KCEPEHHEMLL.transform.SetParent(NJLAHDPMHEK.transform); this.KCEPEHHEMLL.name = "_level"; return NJLAHDPMHEK; } // Token: 0x0600B6E3 RID: 46819 RVA: 0x003667C4 File Offset: 0x003649C4 private void ALIDJABNBMC() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.FCJCJDICHCJ.CNMIEEPMMLH; if (dkonklpenlp.EKENHONHAND < 1E-06f && dkonklpenlp.OFLAGEJEJCC < 1E-06f && dkonklpenlp.ICFCOLPELKO < 1E-06f) { this.LGLCKAOFGEP = string.Format("Latency values are not available.", new object[0]); } else { this.LGLCKAOFGEP = string.Format("Render: {0:F3} TimeWarp: {1:F3} Post-Present: {2:F3}\nRender Error: {3:F3} TimeWarp Error: {4:F3}", new object[] { dkonklpenlp.EKENHONHAND, dkonklpenlp.OFLAGEJEJCC, dkonklpenlp.ICFCOLPELKO, dkonklpenlp.NACLNOKJPFA, dkonklpenlp.CDCFDOBHEIF }); } } // Token: 0x0600B6E4 RID: 46820 RVA: 0x0036688C File Offset: 0x00364A8C private void BCGDCAFADNB() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.HDHLKCIMJCG().FCHGEAAEHEA(); if (dkonklpenlp.EKENHONHAND < 1912f && dkonklpenlp.OFLAGEJEJCC < 1029f && dkonklpenlp.ICFCOLPELKO < 239f) { this.LGLCKAOFGEP = string.Format(" missing: ", new object[0]); } else { string text = "Disabled {0} renderers with shader {1}"; object[] array = new object[6]; array[1] = dkonklpenlp.EKENHONHAND; array[0] = dkonklpenlp.OFLAGEJEJCC; array[5] = dkonklpenlp.ICFCOLPELKO; array[8] = dkonklpenlp.NACLNOKJPFA; array[3] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B6E5 RID: 46821 RVA: 0x00366954 File Offset: 0x00364B54 private void CIAJGIIIJAB() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO += 0; if ((double)this.KELDAEHJNGA <= 475.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("x", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 760f; this.AFLAMHBLPGO = 0; } } // Token: 0x0600B6E6 RID: 46822 RVA: 0x003669F4 File Offset: 0x00364BF4 private void GAEDEDKNAOM() { float num = OVRManager.HPMPJMIOMCK.BENLNOJNCLN(); this.LIOAPBKOBCJ = string.Format("Abort Download", num); } // Token: 0x0600B6E7 RID: 46823 RVA: 0x00366A24 File Offset: 0x00364C24 private void HLBOHFKPDFE() { float num = 0f; int num2 = 20; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "DebugInfo"; this.OALPPBNOLMM.transform.parent = GameObject.Find("DebugUIManager").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(0f, 100f, 0f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(1f, 1f, 1f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.POFHOGJJHJK(this.DHGGMAIAIFI, "FPS", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.POFHOGJJHJK(this.KAPDKINJIGO, "IPD", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.POFHOGJJHJK(this.IGNBGONNBDN, "FOV", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.POFHOGJJHJK(this.DLKBIFHEFMN, "Height", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.POFHOGJJHJK(this.GABAGADECPG, "Depth", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.POFHOGJJHJK(this.NEOLIDNMPBD, "Resolution", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.POFHOGJJHJK(this.IEPOECBGJIP, "Latency", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, 17); } this.CEGGPKFIGPP = false; this.BCADICDODHH = true; } // Token: 0x0600B6E8 RID: 46824 RVA: 0x00366C70 File Offset: 0x00364E70 private void GJNCKMJDFOB() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.HDHLKCIMJCG().EPANPPGNPPJ(VRNode.RightEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.HDHLKCIMJCG().FDDHAHAENNB(VRNode.RightEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format("closed", num, num2); } // Token: 0x0600B6E9 RID: 46825 RVA: 0x00366CFC File Offset: 0x00364EFC private void LFOCDHOMDGK() { if (this.OALPPBNOLMM == null) { return; } if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI.GetComponentInChildren().text = this.NGGFKKMNFNE; } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO.GetComponentInChildren().text = this.KPIAMGNGOHC; } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN.GetComponentInChildren().text = this.ICKEPNNCOAM; } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD.GetComponentInChildren().text = this.OJIECDBKBPA; } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP.GetComponentInChildren().text = this.LGLCKAOFGEP; this.IEPOECBGJIP.GetComponentInChildren().fontSize = 14; } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN.GetComponentInChildren().text = this.EKNGGCAOPKG; } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG.GetComponentInChildren().text = this.LIOAPBKOBCJ; } } // Token: 0x0600B6EA RID: 46826 RVA: 0x00366E38 File Offset: 0x00365038 private void NEEFJHOFMEE() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.FLILJLLEAFK(); } if (Input.GetKeyDown(KeyCode.Alpha0) && this.GBOEHFGHFNF < 361f) { this.CEGGPKFIGPP = true; this.KJNHKHPFBGK ^= false; } this.NHKCPBPFGFF(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(true); this.ILDIAFLJPID(); this.LFOCDHOMDGK(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B6EB RID: 46827 RVA: 0x00366ECC File Offset: 0x003650CC private void DACELGNNKAL() { this.KPIAMGNGOHC = string.Format("RpcPlayWeaponHitNotification", OVRManager.HPMPJMIOMCK.NGBFHPHOIPP() * 1788f); } // Token: 0x0600B6EC RID: 46828 RVA: 0x00366EF4 File Offset: 0x003650F4 private GameObject EMMCPCEPPFI(GameObject NJLAHDPMHEK) { NJLAHDPMHEK = new GameObject(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.GetComponent().sizeDelta = new Vector2(723f, 39f); NJLAHDPMHEK.GetComponent().color = new Color(782f, 1131f, 1886f, 1860f); this.KCEPEHHEMLL = new GameObject(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.GetComponent().sizeDelta = new Vector2(1323f, 302f); this.KCEPEHHEMLL.GetComponent().font = Resources.GetBuiltinResource(typeof(Font), "method") as Font; this.KCEPEHHEMLL.GetComponent().alignment = TextAnchor.MiddleRight; this.KCEPEHHEMLL.transform.SetParent(NJLAHDPMHEK.transform); this.KCEPEHHEMLL.name = "Bow Arrow"; return NJLAHDPMHEK; } // Token: 0x0600B6ED RID: 46829 RVA: 0x0036700C File Offset: 0x0036520C private void ALCAMCGOICF() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.FCJCJDICHCJ.FBHICLJLECJ(VRNode.RightEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.FCJCJDICHCJ.FBHICLJLECJ(VRNode.LeftEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format("closed", num, num2); } // Token: 0x0600B6EE RID: 46830 RVA: 0x00367098 File Offset: 0x00365298 private GameObject OKANLCMDFKB(GameObject NJLAHDPMHEK) { NJLAHDPMHEK = new GameObject(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.GetComponent().sizeDelta = new Vector2(350f, 50f); NJLAHDPMHEK.GetComponent().color = new Color(0.02745098f, 0.1764706f, 0.2784314f, 0.78431374f); this.KCEPEHHEMLL = new GameObject(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.GetComponent().sizeDelta = new Vector2(350f, 50f); this.KCEPEHHEMLL.GetComponent().font = Resources.GetBuiltinResource(typeof(Font), "Arial.ttf") as Font; this.KCEPEHHEMLL.GetComponent().alignment = TextAnchor.MiddleCenter; this.KCEPEHHEMLL.transform.SetParent(NJLAHDPMHEK.transform); this.KCEPEHHEMLL.name = "TextBox"; return NJLAHDPMHEK; } // Token: 0x0600B6EF RID: 46831 RVA: 0x003671B0 File Offset: 0x003653B0 private void HECOBDMPEJF(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.OKANLCMDFKB(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "RiftPresent"; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(0f, 0f, 0f); component.localScale = new Vector3(1f, 1f, 1f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = 20; } // Token: 0x0600B6F0 RID: 46832 RVA: 0x00367260 File Offset: 0x00365460 private void GMOPJHLOHMI() { float num = OVRManager.HPMPJMIOMCK.NJIBOAPCGKI; this.LIOAPBKOBCJ = string.Format("activityLevel", num); } // Token: 0x0600B6F1 RID: 46833 RVA: 0x00367290 File Offset: 0x00365490 private GameObject POFHOGJJHJK(GameObject MKMCHJFIONM, string EKKMPHMGCLB, float OJMKMHHMJPN, string ECFMJBEFGGB, int BGBGJNEDAKH) { MKMCHJFIONM = this.OKANLCMDFKB(MKMCHJFIONM); MKMCHJFIONM.name = EKKMPHMGCLB; MKMCHJFIONM.transform.SetParent(this.OALPPBNOLMM.transform); RectTransform component = MKMCHJFIONM.GetComponent(); component.localPosition = new Vector3(0f, OJMKMHHMJPN -= this.HIICHDHLPJP, 0f); Text componentInChildren = MKMCHJFIONM.GetComponentInChildren(); componentInChildren.text = ECFMJBEFGGB; componentInChildren.fontSize = BGBGJNEDAKH; MKMCHJFIONM.transform.localEulerAngles = Vector3.zero; component.localScale = new Vector3(1f, 1f, 1f); return MKMCHJFIONM; } // Token: 0x0600B6F2 RID: 46834 RVA: 0x0036732C File Offset: 0x0036552C private void JHOIKKCLKBC() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO += 0; if ((double)this.KELDAEHJNGA <= 17.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("api/presence/", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 1421f; this.AFLAMHBLPGO = 1; } } // Token: 0x0600B6F3 RID: 46835 RVA: 0x003673CC File Offset: 0x003655CC private void MJLCIDBNLGE() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 1295.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("Requests in queue:", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 392f; this.AFLAMHBLPGO = 1; } } // Token: 0x0600B6F4 RID: 46836 RVA: 0x0036746C File Offset: 0x0036566C private void PNEGNKFEMHI() { this.KPIAMGNGOHC = string.Format(".jpg", OVRManager.HPMPJMIOMCK.PEPICIGBLME() * 1980f); } // Token: 0x0600B6F6 RID: 46838 RVA: 0x003674B4 File Offset: 0x003656B4 private void KNOLEHKAACG() { float num = OVRManager.HPMPJMIOMCK.IHAHMGKOGCD(); this.EKNGGCAOPKG = string.Format("OpAuthenticate()", num); } // Token: 0x0600B6F7 RID: 46839 RVA: 0x003674E4 File Offset: 0x003656E4 private void DEFNHCKAMPC() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.FLILJLLEAFK(); } if (Input.GetKeyDown(KeyCode.Hash) && this.GBOEHFGHFNF < 601f) { this.CEGGPKFIGPP = false; this.KJNHKHPFBGK ^= false; } this.NHKCPBPFGFF(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(false); this.ILDIAFLJPID(); this.LFOCDHOMDGK(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B6F8 RID: 46840 RVA: 0x00367578 File Offset: 0x00365778 private void AECBOJELNAI() { this.BCADICDODHH = true; } // Token: 0x0600B6F9 RID: 46841 RVA: 0x00367584 File Offset: 0x00365784 private void ACOIMDMPDOM() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "dr"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("Destroying unused PersistenceView {0} with ID {1}").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(1325f, 1093f); rectTransform.localScale = new Vector3(158f, 595f, 1485f); rectTransform.localPosition = new Vector3(1168f, 204f, 1271f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = (RenderMode)4; canvas.pixelPerfect = false; } // Token: 0x0600B6FA RID: 46842 RVA: 0x00367648 File Offset: 0x00365848 private void CLHGKCNHNKD(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.AJHCMNGFEBL(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "Currency Code"; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(960f, 320f, 391f); component.localScale = new Vector3(656f, 1365f, 1584f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = -77; } // Token: 0x0600B6FB RID: 46843 RVA: 0x003676F8 File Offset: 0x003658F8 private void JPPHPAIHBOC(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.OKANLCMDFKB(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "HTTP Update Delegator"; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(1529f, 1130f, 797f); component.localScale = new Vector3(1971f, 1849f, 1447f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = 74; } // Token: 0x0600B6FC RID: 46844 RVA: 0x003677A8 File Offset: 0x003659A8 private GameObject CIJLLINMEPA(GameObject MKMCHJFIONM, string EKKMPHMGCLB, float OJMKMHHMJPN, string ECFMJBEFGGB, int BGBGJNEDAKH) { MKMCHJFIONM = this.EMMCPCEPPFI(MKMCHJFIONM); MKMCHJFIONM.name = EKKMPHMGCLB; MKMCHJFIONM.transform.SetParent(this.OALPPBNOLMM.transform); RectTransform component = MKMCHJFIONM.GetComponent(); component.localPosition = new Vector3(579f, OJMKMHHMJPN -= this.HIICHDHLPJP, 6f); Text componentInChildren = MKMCHJFIONM.GetComponentInChildren(); componentInChildren.text = ECFMJBEFGGB; componentInChildren.fontSize = BGBGJNEDAKH; MKMCHJFIONM.transform.localEulerAngles = Vector3.zero; component.localScale = new Vector3(270f, 1672f, 996f); return MKMCHJFIONM; } // Token: 0x0600B6FD RID: 46845 RVA: 0x00367844 File Offset: 0x00365A44 private void JACHJHNAKPL() { if (this.OALPPBNOLMM == null) { return; } if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI.GetComponentInChildren().text = this.NGGFKKMNFNE; } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO.GetComponentInChildren().text = this.KPIAMGNGOHC; } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN.GetComponentInChildren().text = this.ICKEPNNCOAM; } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD.GetComponentInChildren().text = this.OJIECDBKBPA; } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP.GetComponentInChildren().text = this.LGLCKAOFGEP; this.IEPOECBGJIP.GetComponentInChildren().fontSize = 30; } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN.GetComponentInChildren().text = this.EKNGGCAOPKG; } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG.GetComponentInChildren().text = this.LIOAPBKOBCJ; } } // Token: 0x0600B6FE RID: 46846 RVA: 0x00367980 File Offset: 0x00365B80 private void CLKKKKPMBLA() { float num = 884f; int num2 = 112; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "quantity"; this.OALPPBNOLMM.transform.parent = GameObject.Find("HoverBegin ").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1233f, 1667f, 528f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(933f, 1878f, 1738f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.CIJLLINMEPA(this.DHGGMAIAIFI, "Sec-WebSocket-Protocol", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.POFHOGJJHJK(this.KAPDKINJIGO, "includechildren", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.POFHOGJJHJK(this.IGNBGONNBDN, "Name", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.CIJLLINMEPA(this.DLKBIFHEFMN, ")", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.DGMCIOBFDDE(this.GABAGADECPG, "type", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.POFHOGJJHJK(this.NEOLIDNMPBD, "BEHAVIOR", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.POFHOGJJHJK(this.IEPOECBGJIP, "rotate", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, -121); } this.CEGGPKFIGPP = true; this.BCADICDODHH = false; } // Token: 0x0600B6FF RID: 46847 RVA: 0x00367BCC File Offset: 0x00365DCC private void NGCKEIHIGHP() { if (this.GBOEHFGHFNF >= 872f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B700 RID: 46848 RVA: 0x00367BF0 File Offset: 0x00365DF0 private void EHLNJFKGEBD() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.HDHLKCIMJCG().FBHICLJLECJ(VRNode.RightEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.FCJCJDICHCJ.FBHICLJLECJ(VRNode.RightEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format("rotation", num, num2); } // Token: 0x0600B701 RID: 46849 RVA: 0x00367C7C File Offset: 0x00365E7C private void EKPOKGKHKFO(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.OKANLCMDFKB(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "ParticleRoot"; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(906f, 1487f, 1161f); component.localScale = new Vector3(312f, 1390f, 1155f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = 28; } // Token: 0x0600B702 RID: 46850 RVA: 0x00367D2C File Offset: 0x00365F2C private void PAFDJNDIFJP() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.FCJCJDICHCJ.FDDHAHAENNB(VRNode.RightEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.FCJCJDICHCJ.FBHICLJLECJ(VRNode.LeftEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format(")?", num, num2); } // Token: 0x0600B703 RID: 46851 RVA: 0x00367DB8 File Offset: 0x00365FB8 private void AIJLIFLOJLL() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.HDHLKCIMJCG().EPANPPGNPPJ(VRNode.LeftEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.HDHLKCIMJCG().FBHICLJLECJ(VRNode.RightEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format("interpolation", num, num2); } // Token: 0x0600B704 RID: 46852 RVA: 0x00367E44 File Offset: 0x00366044 private void BIBMICKBGHE() { if (this.GBOEHFGHFNF >= 686f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B705 RID: 46853 RVA: 0x00367E68 File Offset: 0x00366068 private void PCPJADFDPMI() { float num = OVRManager.HPMPJMIOMCK.HAGMECFGLJO(); this.LIOAPBKOBCJ = string.Format("Item Code", num); } // Token: 0x0600B706 RID: 46854 RVA: 0x00367E98 File Offset: 0x00366098 private void NPLEGCGKJBL() { float num = 1045f; int num2 = 93; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "speed"; this.OALPPBNOLMM.transform.parent = GameObject.Find("homepage").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(219f, 216f, 1299f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(738f, 1603f, 1208f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.POFHOGJJHJK(this.DHGGMAIAIFI, "UHJvdG9idWZiBnByb3RvMw==", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.POFHOGJJHJK(this.KAPDKINJIGO, "ConnectToBestCloudServer() failed. Can only connect while in state 'Disconnected'. Current state: ", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.MFDDLHMFNEG(this.IGNBGONNBDN, "value", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.POFHOGJJHJK(this.DLKBIFHEFMN, "RpcMasterRequestTeam", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.CIJLLINMEPA(this.GABAGADECPG, "proxy-authenticate", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.DGMCIOBFDDE(this.NEOLIDNMPBD, "VRDeviceName", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.DGMCIOBFDDE(this.IEPOECBGJIP, "{0}modify", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, 116); } this.CEGGPKFIGPP = false; this.BCADICDODHH = true; } // Token: 0x0600B707 RID: 46855 RVA: 0x003680E4 File Offset: 0x003662E4 private void MOPJFCBPBBA() { this.ICKEPNNCOAM = string.Format("Connected to masterserver.", OVRManager.FCJCJDICHCJ.EPANPPGNPPJ(VRNode.LeftEye).IGNBGONNBDN.y); } // Token: 0x0600B708 RID: 46856 RVA: 0x00368120 File Offset: 0x00366320 private void HEMECOFBEBK() { this.KPIAMGNGOHC = string.Format("HTTPCache", OVRManager.HPMPJMIOMCK.ODMAGJAKNBB() * 1078f); } // Token: 0x0600B709 RID: 46857 RVA: 0x00368148 File Offset: 0x00366348 private void BMHPLCKMHKP() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 0.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("FPS: {0:F2}", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 0f; this.AFLAMHBLPGO = 0; } } // Token: 0x0600B70A RID: 46858 RVA: 0x003681E8 File Offset: 0x003663E8 private void KOJFMLBJPJD() { if (this.OALPPBNOLMM == null) { return; } if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI.GetComponentInChildren().text = this.NGGFKKMNFNE; } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO.GetComponentInChildren().text = this.KPIAMGNGOHC; } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN.GetComponentInChildren().text = this.ICKEPNNCOAM; } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD.GetComponentInChildren().text = this.OJIECDBKBPA; } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP.GetComponentInChildren().text = this.LGLCKAOFGEP; this.IEPOECBGJIP.GetComponentInChildren().fontSize = -10; } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN.GetComponentInChildren().text = this.EKNGGCAOPKG; } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG.GetComponentInChildren().text = this.LIOAPBKOBCJ; } } // Token: 0x0600B70B RID: 46859 RVA: 0x00368324 File Offset: 0x00366524 private void JDAOMLPKPOB() { if (this.OALPPBNOLMM == null) { return; } if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI.GetComponentInChildren().text = this.NGGFKKMNFNE; } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO.GetComponentInChildren().text = this.KPIAMGNGOHC; } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN.GetComponentInChildren().text = this.ICKEPNNCOAM; } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD.GetComponentInChildren().text = this.OJIECDBKBPA; } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP.GetComponentInChildren().text = this.LGLCKAOFGEP; this.IEPOECBGJIP.GetComponentInChildren().fontSize = -42; } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN.GetComponentInChildren().text = this.EKNGGCAOPKG; } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG.GetComponentInChildren().text = this.LIOAPBKOBCJ; } } // Token: 0x0600B70C RID: 46860 RVA: 0x00368460 File Offset: 0x00366660 private void JHEKKOHKCDE() { float num = 729f; int num2 = 29; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "z"; this.OALPPBNOLMM.transform.parent = GameObject.Find("Encryption wasn't established: ").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1855f, 1372f, 188f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(21f, 1699f, 902f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.MFDDLHMFNEG(this.DHGGMAIAIFI, "uip", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.POFHOGJJHJK(this.KAPDKINJIGO, "xvar", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.AEAABCKCGHF(this.IGNBGONNBDN, "Failed to create room. \"", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.AEAABCKCGHF(this.DLKBIFHEFMN, "value", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.DGMCIOBFDDE(this.GABAGADECPG, "Unpublish", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.CIJLLINMEPA(this.NEOLIDNMPBD, "__c", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.CIJLLINMEPA(this.IEPOECBGJIP, "name", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, 95); } this.CEGGPKFIGPP = false; this.BCADICDODHH = true; } // Token: 0x0600B70D RID: 46861 RVA: 0x003686AC File Offset: 0x003668AC private void LAGKABHMAMP() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.FCJCJDICHCJ.CNMIEEPMMLH; if (dkonklpenlp.EKENHONHAND < 1137f && dkonklpenlp.OFLAGEJEJCC < 1623f && dkonklpenlp.ICFCOLPELKO < 12f) { this.LGLCKAOFGEP = string.Format("ns.exitgames.com", new object[1]); } else { string text = "SystemInfo"; object[] array = new object[3]; array[1] = dkonklpenlp.EKENHONHAND; array[1] = dkonklpenlp.OFLAGEJEJCC; array[6] = dkonklpenlp.ICFCOLPELKO; array[1] = dkonklpenlp.NACLNOKJPFA; array[2] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B70E RID: 46862 RVA: 0x00368774 File Offset: 0x00366974 private void MPLINBLAAPH(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.EMMCPCEPPFI(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "T12345"; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(31f, 1832f, 1196f); component.localScale = new Vector3(1403f, 678f, 1898f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = 27; } // Token: 0x0600B70F RID: 46863 RVA: 0x00368824 File Offset: 0x00366A24 private void OILKOGBGDBE() { float num = OVRManager.HPMPJMIOMCK.BENLNOJNCLN(); this.LIOAPBKOBCJ = string.Format("NEWPLAYER_PUNCHCARD", num); } // Token: 0x0600B710 RID: 46864 RVA: 0x00368854 File Offset: 0x00366A54 private GameObject AEAABCKCGHF(GameObject MKMCHJFIONM, string EKKMPHMGCLB, float OJMKMHHMJPN, string ECFMJBEFGGB, int BGBGJNEDAKH) { MKMCHJFIONM = this.OKANLCMDFKB(MKMCHJFIONM); MKMCHJFIONM.name = EKKMPHMGCLB; MKMCHJFIONM.transform.SetParent(this.OALPPBNOLMM.transform); RectTransform component = MKMCHJFIONM.GetComponent(); component.localPosition = new Vector3(767f, OJMKMHHMJPN -= this.HIICHDHLPJP, 661f); Text componentInChildren = MKMCHJFIONM.GetComponentInChildren(); componentInChildren.text = ECFMJBEFGGB; componentInChildren.fontSize = BGBGJNEDAKH; MKMCHJFIONM.transform.localEulerAngles = Vector3.zero; component.localScale = new Vector3(77f, 998f, 1031f); return MKMCHJFIONM; } // Token: 0x0600B711 RID: 46865 RVA: 0x003688F0 File Offset: 0x00366AF0 private void KIIIDJKCOCE() { float num = OVRManager.HPMPJMIOMCK.DJFHBBBOABH(); this.EKNGGCAOPKG = string.Format("Length of Speaker Line Level Thresholds array must be ", num); } // Token: 0x0600B712 RID: 46866 RVA: 0x00368920 File Offset: 0x00366B20 private void HNEJCGMHDHH() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.FLILJLLEAFK(); } if (Input.GetKeyDown((KeyCode)(-74)) && this.GBOEHFGHFNF < 548f) { this.CEGGPKFIGPP = true; this.KJNHKHPFBGK ^= true; } this.OPCBAJGNFHL(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(false); this.HIFMOHPFMMP(); this.LFOCDHOMDGK(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B713 RID: 46867 RVA: 0x003689B4 File Offset: 0x00366BB4 private void KJDELBJCGID() { float num = 373f; int num2 = 64; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "label"; this.OALPPBNOLMM.transform.parent = GameObject.Find("RC").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1007f, 644f, 1228f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(1344f, 1813f, 211f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.MFDDLHMFNEG(this.DHGGMAIAIFI, "time_to_finish", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.POFHOGJJHJK(this.KAPDKINJIGO, "Hole ", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.AEAABCKCGHF(this.IGNBGONNBDN, "We changed something!", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.AEAABCKCGHF(this.DLKBIFHEFMN, "Using constructor for new PingNativeDynamic()", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.POFHOGJJHJK(this.GABAGADECPG, ", SDK v", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.POFHOGJJHJK(this.NEOLIDNMPBD, "\" marked with the [PunRPC](C#) or @PunRPC(JS) property! Args: ", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.POFHOGJJHJK(this.IEPOECBGJIP, "IsCompleted", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, -50); } this.CEGGPKFIGPP = true; this.BCADICDODHH = true; } // Token: 0x0600B714 RID: 46868 RVA: 0x00368C00 File Offset: 0x00366E00 private void LAJOOAILGOP() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.FCJCJDICHCJ.FCHGEAAEHEA(); if (dkonklpenlp.EKENHONHAND < 1672f && dkonklpenlp.OFLAGEJEJCC < 177f && dkonklpenlp.ICFCOLPELKO < 1238f) { this.LGLCKAOFGEP = string.Format(" By: ", new object[0]); } else { string text = "null"; object[] array = new object[0]; array[0] = dkonklpenlp.EKENHONHAND; array[0] = dkonklpenlp.OFLAGEJEJCC; array[1] = dkonklpenlp.ICFCOLPELKO; array[8] = dkonklpenlp.NACLNOKJPFA; array[7] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B715 RID: 46869 RVA: 0x00368CC8 File Offset: 0x00366EC8 private void OBGLBBIFPLA() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.FCJCJDICHCJ.CNMIEEPMMLH; if (dkonklpenlp.EKENHONHAND < 1786f && dkonklpenlp.OFLAGEJEJCC < 1750f && dkonklpenlp.ICFCOLPELKO < 276f) { this.LGLCKAOFGEP = string.Format("demoLong", new object[0]); } else { string text = " CAPTURING BASE "; object[] array = new object[6]; array[1] = dkonklpenlp.EKENHONHAND; array[0] = dkonklpenlp.OFLAGEJEJCC; array[1] = dkonklpenlp.ICFCOLPELKO; array[5] = dkonklpenlp.NACLNOKJPFA; array[6] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B716 RID: 46870 RVA: 0x00368D90 File Offset: 0x00366F90 private void HLJFFMJIJEK() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 964.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("Echuiben", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 1242f; this.AFLAMHBLPGO = 1; } } // Token: 0x0600B717 RID: 46871 RVA: 0x00368E30 File Offset: 0x00367030 private void ILDDOJBJPAK() { AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg = OVRManager.FCJCJDICHCJ.FDDHAHAENNB(VRNode.LeftEye); AMFPENHFBNB.PKCDCLDHLPG pkcdcldhlpg2 = OVRManager.FCJCJDICHCJ.FDDHAHAENNB(VRNode.RightEye); float renderScale = VRSettings.renderScale; float num = (float)((int)(renderScale * (pkcdcldhlpg.ALCBFBILJHB.x + pkcdcldhlpg2.ALCBFBILJHB.x))); float num2 = (float)((int)(renderScale * Mathf.Max(pkcdcldhlpg.ALCBFBILJHB.y, pkcdcldhlpg2.ALCBFBILJHB.y))); this.OJIECDBKBPA = string.Format("Resolution : {0} x {1}", num, num2); } // Token: 0x0600B718 RID: 46872 RVA: 0x00368EBC File Offset: 0x003670BC private void MGHEBJJHJEI() { if (this.GBOEHFGHFNF >= 0f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B719 RID: 46873 RVA: 0x00368EE0 File Offset: 0x003670E0 private void JNJDENIGAHH() { this.BCADICDODHH = true; } // Token: 0x0600B71A RID: 46874 RVA: 0x00368EEC File Offset: 0x003670EC private void GCJDPFDCMLF() { this.ICKEPNNCOAM = string.Format(". Please try again.", OVRManager.HDHLKCIMJCG().FDDHAHAENNB(VRNode.RightEye).IGNBGONNBDN.y); } // Token: 0x0600B71B RID: 46875 RVA: 0x00368F28 File Offset: 0x00367128 private void CLFDCDBGJIM() { this.KPIAMGNGOHC = string.Format("IPD (mm): {0:F4}", OVRManager.HPMPJMIOMCK.KAPDKINJIGO * 1000f); } // Token: 0x0600B71C RID: 46876 RVA: 0x00368F50 File Offset: 0x00367150 private void FJLJNLLHCJP() { this.ICKEPNNCOAM = string.Format("FOV (deg): {0:F3}", OVRManager.FCJCJDICHCJ.FDDHAHAENNB(VRNode.LeftEye).IGNBGONNBDN.y); } // Token: 0x0600B71D RID: 46877 RVA: 0x00368F8C File Offset: 0x0036718C private void CALCKHBHKDG() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.HDHLKCIMJCG().CNMIEEPMMLH; if (dkonklpenlp.EKENHONHAND < 1694f && dkonklpenlp.OFLAGEJEJCC < 1874f && dkonklpenlp.ICFCOLPELKO < 5f) { this.LGLCKAOFGEP = string.Format("[PV] Debug Lost Sim: 1 packet dropped", new object[1]); } else { string text = "PrefabId"; object[] array = new object[4]; array[0] = dkonklpenlp.EKENHONHAND; array[1] = dkonklpenlp.OFLAGEJEJCC; array[3] = dkonklpenlp.ICFCOLPELKO; array[7] = dkonklpenlp.NACLNOKJPFA; array[8] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B71E RID: 46878 RVA: 0x00369054 File Offset: 0x00367254 private void JMFNIOOJPCJ() { float num = OVRManager.HPMPJMIOMCK.BGFAGPOFNIM(); this.EKNGGCAOPKG = string.Format("Unmuted", num); } // Token: 0x0600B71F RID: 46879 RVA: 0x00369084 File Offset: 0x00367284 private GameObject ILGMLGDAMFM(GameObject NJLAHDPMHEK) { NJLAHDPMHEK = new GameObject(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.AddComponent(); NJLAHDPMHEK.GetComponent().sizeDelta = new Vector2(991f, 22f); NJLAHDPMHEK.GetComponent().color = new Color(1750f, 1470f, 1934f, 834f); this.KCEPEHHEMLL = new GameObject(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.AddComponent(); this.KCEPEHHEMLL.GetComponent().sizeDelta = new Vector2(987f, 1468f); this.KCEPEHHEMLL.GetComponent().font = Resources.GetBuiltinResource(typeof(Font), "Are you sure you want to unfriend\n{0} @{1}? ") as Font; this.KCEPEHHEMLL.GetComponent().alignment = TextAnchor.MiddleLeft; this.KCEPEHHEMLL.transform.SetParent(NJLAHDPMHEK.transform); this.KCEPEHHEMLL.name = "One"; return NJLAHDPMHEK; } // Token: 0x0600B720 RID: 46880 RVA: 0x0036919C File Offset: 0x0036739C private void GMDMNBOMAOP() { this.HEMECOFBEBK(); this.IGHLKBBFOFC(); this.GAEDEDKNAOM(); this.LHNDGKIENMC(); this.PAFDJNDIFJP(); this.OBGLBBIFPLA(); this.DLEPHCFPEBK(); } // Token: 0x0600B721 RID: 46881 RVA: 0x003691C8 File Offset: 0x003673C8 private void ADKAPKKOHBC() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "RpcAddControlPoint"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("looktarget").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(212f, 885f); rectTransform.localScale = new Vector3(1498f, 1070f, 1765f); rectTransform.localPosition = new Vector3(1364f, 1047f, 1935f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = (RenderMode)4; canvas.pixelPerfect = false; } // Token: 0x0600B722 RID: 46882 RVA: 0x0036928C File Offset: 0x0036748C private void LKDLFOBDKHN() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.HDHLKCIMJCG().FCHGEAAEHEA(); if (dkonklpenlp.EKENHONHAND < 1327f && dkonklpenlp.OFLAGEJEJCC < 1873f && dkonklpenlp.ICFCOLPELKO < 636f) { this.LGLCKAOFGEP = string.Format("scale", new object[1]); } else { string text = "HideAllGUIs"; object[] array = new object[3]; array[1] = dkonklpenlp.EKENHONHAND; array[0] = dkonklpenlp.OFLAGEJEJCC; array[0] = dkonklpenlp.ICFCOLPELKO; array[0] = dkonklpenlp.NACLNOKJPFA; array[6] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B723 RID: 46883 RVA: 0x00369354 File Offset: 0x00367554 private void DLEPHCFPEBK() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO += 0; if ((double)this.KELDAEHJNGA <= 573.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("[PV] Frame event for voice #", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 1095f; this.AFLAMHBLPGO = 0; } } // Token: 0x0600B724 RID: 46884 RVA: 0x003693F4 File Offset: 0x003675F4 private void OHFNFHEMNON() { float num = OVRManager.HPMPJMIOMCK.OPHNGNMNBGG; this.EKNGGCAOPKG = string.Format("easeType", num); } // Token: 0x0600B725 RID: 46885 RVA: 0x00369424 File Offset: 0x00367624 private void KLAOMHAFGEG() { float num = 1563f; int num2 = 48; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "\" on viewID "; this.OALPPBNOLMM.transform.parent = GameObject.Find("RpcReorderChildren").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1917f, 484f, 1134f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(774f, 1542f, 1162f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.AEAABCKCGHF(this.DHGGMAIAIFI, ".asset", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.CIJLLINMEPA(this.KAPDKINJIGO, "GoogleAnalyticsRequestCache", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.POFHOGJJHJK(this.IGNBGONNBDN, "uploadtransient", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.DGMCIOBFDDE(this.DLKBIFHEFMN, "{0}|{1}", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.AEAABCKCGHF(this.GABAGADECPG, "orienttopath", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.MFDDLHMFNEG(this.NEOLIDNMPBD, "Failed to create room. You have a room under moderation review. Conduct@againstgrav.com", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.CIJLLINMEPA(this.IEPOECBGJIP, "The word was: ", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, -122); } this.CEGGPKFIGPP = true; this.BCADICDODHH = true; } // Token: 0x0600B726 RID: 46886 RVA: 0x00369670 File Offset: 0x00367870 private void OnDestroy() { this.BCADICDODHH = false; } // Token: 0x0600B727 RID: 46887 RVA: 0x0036967C File Offset: 0x0036787C private void MIIEPHFHLDM() { float num = OVRManager.HPMPJMIOMCK.NJIBOAPCGKI; this.LIOAPBKOBCJ = string.Format("Eye Depth (m): {0:F3}", num); } // Token: 0x0600B728 RID: 46888 RVA: 0x003696AC File Offset: 0x003678AC private void KLOICNKJALE() { AMFPENHFBNB.DKONKLPENLP dkonklpenlp = OVRManager.FCJCJDICHCJ.CNMIEEPMMLH; if (dkonklpenlp.EKENHONHAND < 1630f && dkonklpenlp.OFLAGEJEJCC < 1883f && dkonklpenlp.ICFCOLPELKO < 238f) { this.LGLCKAOFGEP = string.Format("PREVENT THE EMP!", new object[1]); } else { string text = "SendThread - Waiting..."; object[] array = new object[8]; array[0] = dkonklpenlp.EKENHONHAND; array[0] = dkonklpenlp.OFLAGEJEJCC; array[1] = dkonklpenlp.ICFCOLPELKO; array[4] = dkonklpenlp.NACLNOKJPFA; array[1] = dkonklpenlp.CDCFDOBHEIF; this.LGLCKAOFGEP = string.Format(text, array); } } // Token: 0x0600B729 RID: 46889 RVA: 0x00369774 File Offset: 0x00367974 private void HJLIMJPPNFK() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 1487.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("D2", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 312f; this.AFLAMHBLPGO = 0; } } // Token: 0x0600B72A RID: 46890 RVA: 0x00369814 File Offset: 0x00367A14 private void NHLJJOPDMIN() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "_VignetteSoftness"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("homepage").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(1713f, 913f); rectTransform.localScale = new Vector3(1490f, 461f, 800f); rectTransform.localPosition = new Vector3(1279f, 1769f, 113f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = (RenderMode)6; canvas.pixelPerfect = true; } // Token: 0x0600B72B RID: 46891 RVA: 0x003698D8 File Offset: 0x00367AD8 private void LBNHHPNJKJF() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 965.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("gzip", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 1817f; this.AFLAMHBLPGO = 1; } } // Token: 0x0600B72C RID: 46892 RVA: 0x00369978 File Offset: 0x00367B78 private void IGFEAKLOCDL() { if (this.OALPPBNOLMM == null) { return; } if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI.GetComponentInChildren().text = this.NGGFKKMNFNE; } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO.GetComponentInChildren().text = this.KPIAMGNGOHC; } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN.GetComponentInChildren().text = this.ICKEPNNCOAM; } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD.GetComponentInChildren().text = this.OJIECDBKBPA; } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP.GetComponentInChildren().text = this.LGLCKAOFGEP; this.IEPOECBGJIP.GetComponentInChildren().fontSize = 38; } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN.GetComponentInChildren().text = this.EKNGGCAOPKG; } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG.GetComponentInChildren().text = this.LIOAPBKOBCJ; } } // Token: 0x0600B72D RID: 46893 RVA: 0x00369AB4 File Offset: 0x00367CB4 private void KADAAJPMPAC(GameObject FEOIHHJNJHI) { this.GOFBHNJLCDM = this.OKANLCMDFKB(this.GOFBHNJLCDM); this.GOFBHNJLCDM.transform.SetParent(FEOIHHJNJHI.transform); this.GOFBHNJLCDM.name = "The word was: "; RectTransform component = this.GOFBHNJLCDM.GetComponent(); component.localPosition = new Vector3(883f, 1624f, 1195f); component.localScale = new Vector3(1408f, 380f, 1775f); component.localEulerAngles = Vector3.zero; Text componentInChildren = this.GOFBHNJLCDM.GetComponentInChildren(); componentInChildren.text = this.DLEPNJKNCAG; componentInChildren.fontSize = 34; } // Token: 0x0600B72E RID: 46894 RVA: 0x00369B64 File Offset: 0x00367D64 private void LHNDGKIENMC() { this.ICKEPNNCOAM = string.Format("Operation failed: ", OVRManager.FCJCJDICHCJ.FDDHAHAENNB(VRNode.RightEye).IGNBGONNBDN.y); } // Token: 0x0600B72F RID: 46895 RVA: 0x00369BA0 File Offset: 0x00367DA0 private void EFGJJPCENBJ() { this.BCADICDODHH = true; } // Token: 0x0600B730 RID: 46896 RVA: 0x00369BAC File Offset: 0x00367DAC private void NGEOAOBLEEI() { this.KPIAMGNGOHC = string.Format("...", OVRManager.HPMPJMIOMCK.CJGPDOLCFEF() * 1948f); } // Token: 0x0600B731 RID: 46897 RVA: 0x00369BD4 File Offset: 0x00367DD4 private void NHKCPBPFGFF() { if (this.GBOEHFGHFNF >= 1955f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B732 RID: 46898 RVA: 0x00369BF8 File Offset: 0x00367DF8 private void LDFFPEJBBFG() { float num = OVRManager.HPMPJMIOMCK.IHAHMGKOGCD(); this.EKNGGCAOPKG = string.Format("You Hit ", num); } // Token: 0x0600B733 RID: 46899 RVA: 0x00369C28 File Offset: 0x00367E28 private void Update() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.HLBOHFKPDFE(); } if (Input.GetKeyDown(KeyCode.Space) && this.GBOEHFGHFNF < 0f) { this.CEGGPKFIGPP = true; this.KJNHKHPFBGK ^= true; } this.MGHEBJJHJEI(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(true); this.HIFMOHPFMMP(); this.LFOCDHOMDGK(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B734 RID: 46900 RVA: 0x00369CBC File Offset: 0x00367EBC private void BHGHIJHBJOE() { float num = 1954f; int num2 = -69; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "Right"; this.OALPPBNOLMM.transform.parent = GameObject.Find("VirtualButtonPressed").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(1813f, 1332f, 435f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(722f, 1865f, 669f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.MFDDLHMFNEG(this.DHGGMAIAIFI, "Received RPC: ", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.AEAABCKCGHF(this.KAPDKINJIGO, "{0}v1/myprogress", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.DGMCIOBFDDE(this.IGNBGONNBDN, "Anonymous", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.MFDDLHMFNEG(this.DLKBIFHEFMN, "Custom/SteamVR_ColorOut", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.MFDDLHMFNEG(this.GABAGADECPG, "Text Hints", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.DGMCIOBFDDE(this.NEOLIDNMPBD, "Screen Name", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.POFHOGJJHJK(this.IEPOECBGJIP, "deviceType", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, -19); } this.CEGGPKFIGPP = true; this.BCADICDODHH = false; } // Token: 0x0600B735 RID: 46901 RVA: 0x00369F08 File Offset: 0x00368108 private void OPCBAJGNFHL() { if (this.GBOEHFGHFNF >= 1827f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B736 RID: 46902 RVA: 0x00369F2C File Offset: 0x0036812C private void FPMMBPEOBEE() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = " ch#"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("EMP DETONATED").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(96f, 737f); rectTransform.localScale = new Vector3(1652f, 1925f, 1246f); rectTransform.localPosition = new Vector3(1511f, 193f, 1757f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = (RenderMode)7; canvas.pixelPerfect = true; } // Token: 0x0600B737 RID: 46903 RVA: 0x00369FF0 File Offset: 0x003681F0 private void LDJMCAILKEP() { float num = 250f; int num2 = -95; this.OALPPBNOLMM = new GameObject(); this.OALPPBNOLMM.name = "Error on server call: {0}. Local objective state will not be reflected in server!"; this.OALPPBNOLMM.transform.parent = GameObject.Find("TestBot").transform; this.OALPPBNOLMM.transform.localPosition = new Vector3(486f, 1099f, 798f); this.OALPPBNOLMM.transform.localEulerAngles = Vector3.zero; this.OALPPBNOLMM.transform.localScale = new Vector3(1763f, 1484f, 189f); if (!string.IsNullOrEmpty(this.NGGFKKMNFNE)) { this.DHGGMAIAIFI = this.AEAABCKCGHF(this.DHGGMAIAIFI, "oncomplete", num -= this.HIICHDHLPJP, this.NGGFKKMNFNE, num2); } if (!string.IsNullOrEmpty(this.KPIAMGNGOHC)) { this.KAPDKINJIGO = this.MFDDLHMFNEG(this.KAPDKINJIGO, "{0}v2/acceptfriendrequest?id={1}", num -= this.HIICHDHLPJP, this.KPIAMGNGOHC, num2); } if (!string.IsNullOrEmpty(this.ICKEPNNCOAM)) { this.IGNBGONNBDN = this.DGMCIOBFDDE(this.IGNBGONNBDN, "Check back later for more challenges!", num -= this.HIICHDHLPJP, this.ICKEPNNCOAM, num2); } if (!string.IsNullOrEmpty(this.EKNGGCAOPKG)) { this.DLKBIFHEFMN = this.AEAABCKCGHF(this.DLKBIFHEFMN, "output_log.txt", num -= this.HIICHDHLPJP, this.EKNGGCAOPKG, num2); } if (!string.IsNullOrEmpty(this.LIOAPBKOBCJ)) { this.GABAGADECPG = this.DGMCIOBFDDE(this.GABAGADECPG, "amount", num -= this.HIICHDHLPJP, this.LIOAPBKOBCJ, num2); } if (!string.IsNullOrEmpty(this.OJIECDBKBPA)) { this.NEOLIDNMPBD = this.AEAABCKCGHF(this.NEOLIDNMPBD, "time", num -= this.HIICHDHLPJP, this.OJIECDBKBPA, num2); } if (!string.IsNullOrEmpty(this.LGLCKAOFGEP)) { this.IEPOECBGJIP = this.DGMCIOBFDDE(this.IEPOECBGJIP, "imgList", num - this.HIICHDHLPJP, this.LGLCKAOFGEP, -125); } this.CEGGPKFIGPP = true; this.BCADICDODHH = false; } // Token: 0x0600B738 RID: 46904 RVA: 0x0036A23C File Offset: 0x0036843C private void Awake() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "DebugUIManager"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("LeftEyeAnchor").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(100f, 100f); rectTransform.localScale = new Vector3(0.001f, 0.001f, 0.001f); rectTransform.localPosition = new Vector3(0.01f, 0.17f, 0.53f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = RenderMode.WorldSpace; canvas.pixelPerfect = false; } // Token: 0x0600B739 RID: 46905 RVA: 0x0036A300 File Offset: 0x00368500 private void HIFMOHPFMMP() { this.CLFDCDBGJIM(); this.OINCLIMIMED(); this.MIIEPHFHLDM(); this.FJLJNLLHCJP(); this.ILDDOJBJPAK(); this.ALIDJABNBMC(); this.BMHPLCKMHKP(); } // Token: 0x0600B73A RID: 46906 RVA: 0x0036A32C File Offset: 0x0036852C private void EIGAGJJPJOO() { if (this.GBOEHFGHFNF >= 1107f) { this.GBOEHFGHFNF -= Time.deltaTime; } } // Token: 0x0600B73B RID: 46907 RVA: 0x0036A350 File Offset: 0x00368550 private GameObject DGMCIOBFDDE(GameObject MKMCHJFIONM, string EKKMPHMGCLB, float OJMKMHHMJPN, string ECFMJBEFGGB, int BGBGJNEDAKH) { MKMCHJFIONM = this.EMMCPCEPPFI(MKMCHJFIONM); MKMCHJFIONM.name = EKKMPHMGCLB; MKMCHJFIONM.transform.SetParent(this.OALPPBNOLMM.transform); RectTransform component = MKMCHJFIONM.GetComponent(); component.localPosition = new Vector3(925f, OJMKMHHMJPN -= this.HIICHDHLPJP, 52f); Text componentInChildren = MKMCHJFIONM.GetComponentInChildren(); componentInChildren.text = ECFMJBEFGGB; componentInChildren.fontSize = BGBGJNEDAKH; MKMCHJFIONM.transform.localEulerAngles = Vector3.zero; component.localScale = new Vector3(167f, 1278f, 1006f); return MKMCHJFIONM; } // Token: 0x0600B73C RID: 46908 RVA: 0x0036A3EC File Offset: 0x003685EC private void JJIHHEFLKEO() { this.KELDAEHJNGA -= Time.unscaledDeltaTime; this.PNCCOCBGGIC += Time.unscaledDeltaTime; this.AFLAMHBLPGO++; if ((double)this.KELDAEHJNGA <= 1261.0) { float num = (float)this.AFLAMHBLPGO / this.PNCCOCBGGIC; this.NGGFKKMNFNE = string.Format("#02C85F", num); this.KELDAEHJNGA += this.GNLJKDNNLNK; this.PNCCOCBGGIC = 607f; this.AFLAMHBLPGO = 1; } } // Token: 0x0600B73D RID: 46909 RVA: 0x0036A48C File Offset: 0x0036868C private void DKDGOJGKHDM() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.KJDELBJCGID(); } if (Input.GetKeyDown((KeyCode)30) && this.GBOEHFGHFNF < 480f) { this.CEGGPKFIGPP = false; this.KJNHKHPFBGK ^= false; } this.OPCBAJGNFHL(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(true); this.HIFMOHPFMMP(); this.JACHJHNAKPL(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B73E RID: 46910 RVA: 0x0036A520 File Offset: 0x00368720 private void IJPDEJFNCNH() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.JHEKKOHKCDE(); } if (Input.GetKeyDown((KeyCode)(-79)) && this.GBOEHFGHFNF < 634f) { this.CEGGPKFIGPP = false; this.KJNHKHPFBGK ^= true; } this.NGCKEIHIGHP(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(false); this.ILDIAFLJPID(); this.KOJFMLBJPJD(); } else { this.IHJDPNKKKEE.SetActive(true); } } // Token: 0x0600B73F RID: 46911 RVA: 0x0036A5B4 File Offset: 0x003687B4 private GameObject MFDDLHMFNEG(GameObject MKMCHJFIONM, string EKKMPHMGCLB, float OJMKMHHMJPN, string ECFMJBEFGGB, int BGBGJNEDAKH) { MKMCHJFIONM = this.ILGMLGDAMFM(MKMCHJFIONM); MKMCHJFIONM.name = EKKMPHMGCLB; MKMCHJFIONM.transform.SetParent(this.OALPPBNOLMM.transform); RectTransform component = MKMCHJFIONM.GetComponent(); component.localPosition = new Vector3(1587f, OJMKMHHMJPN -= this.HIICHDHLPJP, 1682f); Text componentInChildren = MKMCHJFIONM.GetComponentInChildren(); componentInChildren.text = ECFMJBEFGGB; componentInChildren.fontSize = BGBGJNEDAKH; MKMCHJFIONM.transform.localEulerAngles = Vector3.zero; component.localScale = new Vector3(1533f, 351f, 154f); return MKMCHJFIONM; } // Token: 0x0600B740 RID: 46912 RVA: 0x0036A650 File Offset: 0x00368850 private void LJICNBMGDMN() { if (this.CEGGPKFIGPP && !this.BCADICDODHH) { this.HLBOHFKPDFE(); } if (Input.GetKeyDown((KeyCode)(-78)) && this.GBOEHFGHFNF < 1856f) { this.CEGGPKFIGPP = true; this.KJNHKHPFBGK ^= true; } this.BIBMICKBGHE(); if (this.KJNHKHPFBGK) { this.IHJDPNKKKEE.SetActive(true); this.GMDMNBOMAOP(); this.JACHJHNAKPL(); } else { this.IHJDPNKKKEE.SetActive(false); } } // Token: 0x0600B741 RID: 46913 RVA: 0x0036A6E4 File Offset: 0x003688E4 private void OINCLIMIMED() { float num = OVRManager.HPMPJMIOMCK.OPHNGNMNBGG; this.EKNGGCAOPKG = string.Format("Eye Height (m): {0:F3}", num); } // Token: 0x0600B742 RID: 46914 RVA: 0x0036A714 File Offset: 0x00368914 private void IGHLKBBFOFC() { float num = OVRManager.HPMPJMIOMCK.BJGFMCEJLKK(); this.EKNGGCAOPKG = string.Format("Challenge dict was null", num); } // Token: 0x0600B743 RID: 46915 RVA: 0x0036A744 File Offset: 0x00368944 private void DHAEEPCMCMI() { this.IHJDPNKKKEE = new GameObject(); this.IHJDPNKKKEE.name = "IsDeveloper"; this.IHJDPNKKKEE.transform.parent = GameObject.Find("ACTk has secure layer for the PlayerPrefs: ObscuredPrefs. It protects data from view, detects any cheating attempts, optionally locks data to the current device and supports additional data types.").transform; RectTransform rectTransform = this.IHJDPNKKKEE.AddComponent(); rectTransform.sizeDelta = new Vector2(1258f, 1099f); rectTransform.localScale = new Vector3(1811f, 1919f, 1748f); rectTransform.localPosition = new Vector3(1517f, 670f, 320f); rectTransform.localEulerAngles = Vector3.zero; Canvas canvas = this.IHJDPNKKKEE.AddComponent(); canvas.renderMode = RenderMode.WorldSpace; canvas.pixelPerfect = true; } // Token: 0x040018B9 RID: 6329 private GameObject IHJDPNKKKEE; // Token: 0x040018BA RID: 6330 private GameObject OALPPBNOLMM; // Token: 0x040018BB RID: 6331 private GameObject GOFBHNJLCDM; // Token: 0x040018BC RID: 6332 private GameObject DHGGMAIAIFI; // Token: 0x040018BD RID: 6333 private GameObject KAPDKINJIGO; // Token: 0x040018BE RID: 6334 private GameObject IGNBGONNBDN; // Token: 0x040018BF RID: 6335 private GameObject DLKBIFHEFMN; // Token: 0x040018C0 RID: 6336 private GameObject GABAGADECPG; // Token: 0x040018C1 RID: 6337 private GameObject NEOLIDNMPBD; // Token: 0x040018C2 RID: 6338 private GameObject IEPOECBGJIP; // Token: 0x040018C3 RID: 6339 private GameObject KCEPEHHEMLL; // Token: 0x040018C4 RID: 6340 private string DLEPNJKNCAG; // Token: 0x040018C5 RID: 6341 private string NGGFKKMNFNE; // Token: 0x040018C6 RID: 6342 private string KPIAMGNGOHC; // Token: 0x040018C7 RID: 6343 private string ICKEPNNCOAM; // Token: 0x040018C8 RID: 6344 private string EKNGGCAOPKG; // Token: 0x040018C9 RID: 6345 private string LIOAPBKOBCJ; // Token: 0x040018CA RID: 6346 private string OJIECDBKBPA; // Token: 0x040018CB RID: 6347 private string LGLCKAOFGEP; // Token: 0x040018CC RID: 6348 private float GNLJKDNNLNK = 0.5f; // Token: 0x040018CD RID: 6349 private float PNCCOCBGGIC; // Token: 0x040018CE RID: 6350 private int AFLAMHBLPGO; // Token: 0x040018CF RID: 6351 private float KELDAEHJNGA; // Token: 0x040018D0 RID: 6352 private bool CEGGPKFIGPP; // Token: 0x040018D1 RID: 6353 private bool BCADICDODHH; // Token: 0x040018D2 RID: 6354 private float HIICHDHLPJP = 55f; // Token: 0x040018D3 RID: 6355 private float GBOEHFGHFNF; // Token: 0x040018D4 RID: 6356 private bool KJNHKHPFBGK; }