• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Nebula Serpent

Second Lieutenant
3 Badges
May 1, 2018
100
1
  • BATTLETECH - Initiate of the Order
  • BATTLETECH - Beta Backer
  • BATTLETECH - Backer
Hi I just wanted to hear if someone would please, oh please make a mod.json and/or DLL mod that implements a proper pause function in the game? What I am referring to is a key that freezes time and allows you to move the camera around for beautiful screenshots that involves weapons firing and mechs exploding.

The function in Unity is called 'timescale' and I simply need someone to write a mod that sets timescale to 0 (game freeze) and to 1 (game active). Something along these lines, but in modtek/json format:

Code:
  function Update ()
    {   
        if(Input.GetKeyDown("escape"))     
        {       
            if (Time.timeScale == 1.0)           
                Time.timeScale = 0.0;       
            else
                Time.timeScale = 1.0;               
        }
    }


I am unfortunately incapable of making mods for this game, so any help would be appreciated. I really, really would love this in order to properly pause the game.