コード例 #1
0
        public static void Toggle_Mode()
        {
            bool toggle = !BlazeManager.GetForPlayer <bool>("Fly Type");

            BlazeManager.SetForPlayer("Fly Type", toggle);
            RefreshStatus();
        }
コード例 #2
0
        public static void Toggle_Enable()
        {
            bool toggle = !BlazeManager.GetForPlayer <bool>("Fly Enable");

            BlazeManager.SetForPlayer("Fly Enable", toggle);
            RefreshStatus();
            Player.Instance.GetComponent <Collider>().enabled = !toggle;
            Physics.gravity = toggle ? Vector3.zero : new Vector3(0, -9.5f, 0);
        }
コード例 #3
0
 public static void Toggle_SteamSpoof()
 {
     BlazeManager.SetForPlayer("Steam Spoof", !BlazeManager.GetForPlayer <bool>("Steam Spoof"));
     RefreshStatus_SteamSpoof();
     VRCPlayer.Refresh_Properties();
 }
コード例 #4
0
 public static void Toggle_FastJoin()
 {
     BlazeManager.SetForPlayer("Fast Join", !BlazeManager.GetForPlayer <bool>("Fast Join"));
     RefreshStatus_FastJoin();
 }
コード例 #5
0
 public static void Toggle_Enable()
 {
     BlazeManager.SetForPlayer("AntiBlock", !BlazeManager.GetForPlayer <bool>("AntiBlock"));
     RefreshStatus();
 }
コード例 #6
0
 public static void Toggle_Enable_Spawn()
 {
     BlazeManager.SetForPlayer("No Portal Spawn", !BlazeManager.GetForPlayer <bool>("No Portal Spawn"));
     RefreshStatusSpawn();
 }
コード例 #7
0
 public static void Toggle_Enable()
 {
     BlazeManager.SetForPlayer("Photon Serilize", !BlazeManager.GetForPlayer <bool>("Photon Serilize"));
     RefreshStatus();
 }
コード例 #8
0
 public static void Toggle_Enable()
 {
     BlazeManager.SetForPlayer("Global Events", !BlazeManager.GetForPlayer <bool>("Global Events"));
     RefreshStatus();
 }
コード例 #9
0
 public static void Toggle_Enable()
 {
     BlazeManager.SetForPlayer("Invis API", !BlazeManager.GetForPlayer <bool>("Invis API"));
     RefreshStatus();
 }
コード例 #10
0
 public static void Toggle_Enable()
 {
     BlazeManager.SetForPlayer("Hide Pickup", !BlazeManager.GetForPlayer <bool>("Hide Pickup"));
     RefreshStatus();
 }