//private GameObject[] cameraHelper = new GameObject[2]; public void Awake() { instance = this; VRCToolsLogger.Info("Initialising VRCTools " + VRCToolsVersion + " for game version " + GAMEVERSION); VRCTServerManager.Init(); VRCTServerManager.InitConnection(); VRCTServerManager.GetLastestVersion(); VRCToolsLogger.Init(false); ChangeCacheFolder(); //VRCToolsLogger.Info("Game download path: " + Application.persistentDataPath); try { DiscordLoader.Init(); discordInit = true; } catch (Exception e) { Console.WriteLine("An error occured during the initialisation of DRPC:"); Console.WriteLine(e); } try { AvatarUtils.Init(); avatarInit = true; } catch (Exception e) { Console.WriteLine("An error occured during the initialisation of AvatarUtils:"); Console.WriteLine(e); } /* * try * { * InitEnhancedCamera(); * } * catch (Exception e) * { * Console.WriteLine("An error occured during the initialisation of the Enhanced Camera:"); * Console.WriteLine(e); * } */ DontDestroyOnLoad(this); VRCToolsLogger.Info("Initialised successfully !"); MessageGUI(Color.green, "Using VRCTools " + VERSION, 8); MessageGUI(Color.green, "Made By Slaynash", 8); VRCTServerManager.ShowMOTD(); }
//*/ public void Update() { try { VRCTServerManager.Update(); VRCToolsLogger.Update(); if (discordInit) { DiscordLoader.Update(); } if (avatarInit) { AvatarUtils.Update(); } } catch (Exception e) { VRCToolsLogger.Error(e.ToString()); } }