Increase FPS

Increase FPS in shell shockers

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Increase FPS
// @license MIT
// @namespace    http://tampermonkey.net/
// @version      0.6
// @description  Increase FPS in shell shockers
// @author       HRLO77
// @match        *://shellshock.io/*
// @match        https://shellshock.io
// @match        https://shellshock.io/*
// @match        https://shellshock.io/
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  var script = document.createElement('script');
  script.src = 'https://preview.babylonjs.com/babylon.js';
  document.head.appendChild(script);

  script.onload = function() {
    var scene = BABYLON.Engine.LastCreatedScene;
    var options = new BABYLON.SceneOptimizerOptions.HighDegradationAllowed(76);
    if (scene) {
      scene.getEngine().setMaxFPS(Infinity);
      optimizer = new BABYLON.SceneOptimizer(scene, options);
      optimizer.start();
      //scene.getEngine().useGeometryIdsMap = true;
      //scene.getEngine().useMaterialMeshMap = true;
      //scene.getEngine().useClonedMeshMap = true; // all these use require more mem
      scene.getEngine().performancePriority = 'aggressive';
      scene.getEngine().snapshotRendering = true;
    }
  };
})();