mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
26 lines
419 B
C#
26 lines
419 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class ConfigStoryStateSetting
|
|
{
|
|
public float anchorRadius = 0.77f;
|
|
|
|
public float yaw = -8.3f;
|
|
|
|
public float pitch = 5.19f;
|
|
|
|
public float yOffset = 1.2f;
|
|
|
|
public float xOffset = -0.9f;
|
|
|
|
public float fov = 80f;
|
|
|
|
public float screenZOffset = 0.14f;
|
|
|
|
public float screenYOffset = 1.3f;
|
|
|
|
public float screenXOffset = -0.93f;
|
|
|
|
public float screenScale = 0.0025f;
|
|
}
|
|
}
|