2022-10-03 02:04:54 +02:00
|
|
|
using System.Collections;
|
|
|
|
using WindowsInput.Native;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class Config
|
|
|
|
{
|
2022-11-05 01:32:17 +01:00
|
|
|
public int CaptureMode = 3;
|
2022-11-05 02:01:11 +01:00
|
|
|
public int CaptureFPS = 4;
|
2022-10-03 02:04:54 +02:00
|
|
|
public bool CaptureDesktop = false;
|
2022-11-05 01:32:17 +01:00
|
|
|
public int DesktopIndex = 0;
|
|
|
|
public int SpectatorMode = 2;
|
2022-11-05 02:01:11 +01:00
|
|
|
public int SpectatorFPS = 2;
|
2022-10-03 02:04:54 +02:00
|
|
|
public float SpectatorFOV = 40;
|
2022-10-07 17:12:42 +02:00
|
|
|
public float SpectatorSmooth = 0.05f;
|
2022-10-03 02:04:54 +02:00
|
|
|
public float[] TPCamPosition = new float[3] { -0.6f, 1.8f, -1.2f };
|
|
|
|
public float[] TPCamRotation = new float[3] { 23, 35, 0 };
|
2022-11-05 02:10:07 +01:00
|
|
|
public float HandSize = 0.08f;
|
2022-11-05 01:32:17 +01:00
|
|
|
public float HandX = 0;
|
|
|
|
public float HandY = 0;
|
|
|
|
public float HandZ = 0;
|
2022-10-03 02:04:54 +02:00
|
|
|
public float PlayerHeight = 0;
|
2022-11-05 01:32:17 +01:00
|
|
|
public int Skybox = 0;
|
2022-12-05 23:15:03 +01:00
|
|
|
public int Enviroment = 0;
|
2022-10-03 02:04:54 +02:00
|
|
|
public float HapticDuration = 0.1f;
|
|
|
|
public float HapticAmplitude = 0.75f;
|
2022-11-05 02:11:01 +01:00
|
|
|
public int TouchSampleRate = 3;
|
2022-11-07 22:31:18 +01:00
|
|
|
public int HandTrackingMode = 1;
|
2022-11-05 01:32:17 +01:00
|
|
|
public float Threshold = 0.3f;
|
2022-11-08 21:23:25 +01:00
|
|
|
public bool TouchAirWall = false;
|
2022-11-05 01:32:17 +01:00
|
|
|
public bool UseIPCLighting = true;
|
|
|
|
public bool UseIPCTouch = true;
|
2022-11-08 23:43:35 +01:00
|
|
|
public float LightStrength = 1.25f;
|
2022-11-05 02:01:11 +01:00
|
|
|
public int TestKeyBind = 40;
|
|
|
|
public int ServiceKeyBind = 41;
|
|
|
|
public int CoinKeyBind = 31;
|
|
|
|
public int CustomKeyBind = 170;
|
2022-11-05 01:32:17 +01:00
|
|
|
public bool FlatShadedRing = false;
|
2022-11-05 20:23:31 +01:00
|
|
|
public bool DynamicProbe = true;
|
2022-11-05 01:32:17 +01:00
|
|
|
public bool PostProcess = true;
|
|
|
|
public int AntiAliasing = 0;
|
2022-10-16 16:18:17 +02:00
|
|
|
public string batFileLocation = "";
|
2022-11-05 01:32:17 +01:00
|
|
|
|
2022-10-03 02:04:54 +02:00
|
|
|
}
|