forked from Cookies_Github_mirror/AquaDX
[+] CustomCameraId (#66)
* [+] CustomCameraId * [F] Map CameraType to the correct Camera IDs using enum * [+] GameInfo Utils * [+] CustomCameraId Add ChimeCamera Support * [+] Decide whether to print a CameraList based on the Config
This commit is contained in:
@@ -12,6 +12,7 @@ namespace AquaMai
|
||||
public UtilsConfig Utils { get; set; } = new();
|
||||
public TimeSavingConfig TimeSaving { get; set; } = new();
|
||||
public WindowStateConfig WindowState { get; set; } = new();
|
||||
public CustomCameraIdConfig CustomCameraId { get; set; } = new();
|
||||
public TouchSensitivityConfig TouchSensitivity { get; set; } = new();
|
||||
public CustomKeyMapConfig CustomKeyMap { get; set; } = new();
|
||||
|
||||
@@ -96,6 +97,16 @@ namespace AquaMai
|
||||
public int Height { get; set; }
|
||||
}
|
||||
|
||||
public class CustomCameraIdConfig
|
||||
{
|
||||
public bool Enable { get; set; }
|
||||
public bool PrintCameraList { get; set; } = false;
|
||||
public int LeftQrCamera { get; set; } = 0;
|
||||
public int RightQrCamera { get; set; } = 0;
|
||||
public int PhotoCamera { get; set; } = 0;
|
||||
public int ChimeCamera { get; set; } = 0;
|
||||
}
|
||||
|
||||
public class TouchSensitivityConfig
|
||||
{
|
||||
public bool Enable { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user