Add new cool light beam for the flashlight

Co-authored-by: Евгений Титаренко <frundle@teasanctuary.ru>
This commit is contained in:
Иван Кузьменко 2023-08-16 00:13:37 +03:00
parent 3832a05c1b
commit f307a7ef00
20 changed files with 230 additions and 68 deletions

9
scripts/Constants.cs Normal file
View file

@ -0,0 +1,9 @@
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;
}