12 lines
No EOL
381 B
C#
12 lines
No EOL
381 B
C#
using Godot;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly Vector2 ScreenSize = new(256, 192);
|
|
public static readonly Vector2 HalfScreenSize = ScreenSize / 2;
|
|
|
|
public const float MaxFlashlightRadius = 32;
|
|
public const float MinFlashlightRadius = 8;
|
|
public const float MaxFlashlightDistance = 96;
|
|
public const float MinFlashlightDistance = 16;
|
|
} |