2026-04-26 00:27:56 +07:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace OnlyScove.Scripts
|
|
|
|
|
{
|
2026-06-08 23:25:33 +07:00
|
|
|
[CreateAssetMenu(fileName = "GameSettings", menuName = "BABA_YAGA/Settings/GameSettings")]
|
2026-04-26 00:27:56 +07:00
|
|
|
public class GameSettings : ScriptableObject
|
|
|
|
|
{
|
|
|
|
|
[Header("Camera Settings")]
|
|
|
|
|
public float sensitivity = 1.0f;
|
|
|
|
|
public bool invertX = false;
|
|
|
|
|
public bool invertY = false;
|
|
|
|
|
public bool sideBiasRight = true; // true for Right, false for Left
|
|
|
|
|
|
|
|
|
|
[Header("Other Settings")]
|
|
|
|
|
public float fieldOfView = 60f;
|
|
|
|
|
}
|
|
|
|
|
}
|