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:
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.
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.