1
0
mirror of synced 2024-12-12 14:31:04 +01:00
WACVR/Assets/Script/Configuration/Config.cs

44 lines
1.4 KiB
C#
Raw Normal View History

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;
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;
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;
public int HandTrackingMode = 1;
2022-11-05 01:32:17 +01:00
public float Threshold = 0.3f;
public bool TouchAirWall = false;
2022-11-05 01:32:17 +01:00
public bool UseIPCLighting = true;
public bool UseIPCTouch = true;
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;
public bool DynamicProbe = true;
2022-11-05 01:32:17 +01:00
public bool PostProcess = true;
public int AntiAliasing = 0;
public string batFileLocation = "";
2022-11-05 01:32:17 +01:00
2022-10-03 02:04:54 +02:00
}