2023-06-05 19:57:17 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
namespace BITKit
|
|
|
|
{
|
|
|
|
public record PlayerConfig
|
|
|
|
{
|
2023-10-06 23:43:19 +08:00
|
|
|
public static readonly PlayerConfig Singleton = new();
|
|
|
|
public float Sensitivity = 1.81f;
|
|
|
|
public float TouchSensitivity = 0.22f;
|
|
|
|
public float M_Yaw = 0.022f;
|
|
|
|
public float Fov = 75;
|
2023-06-05 19:57:17 +08:00
|
|
|
}
|
|
|
|
}
|