chore,gd: refactored project structure and started the mantle system

This commit is contained in:
2025-05-22 13:35:01 +02:00
parent 67461aa4be
commit a926840570
212 changed files with 422 additions and 409 deletions

View File

@ -0,0 +1,25 @@
using Godot;
namespace PolarBears.PlayerControllerAddon;
public class Constants
{
// Shaders' parameters
public const string DISTORTION_SHADER_SCREEN_DARKNESS = "screen_darkness";
public const string DISTORTION_SHADER_DARKNESS_PROGRESSION = "darkness_progression";
public const string DISTORTION_SHADER_UV_OFFSET = "uv_offset";
public const string DISTORTION_SHADER_SIZE = "size";
public const string VIGNETTE_SHADER_MULTIPLIER = "multiplier";
public const string VIGNETTE_SHADER_SOFTNESS = "softness";
public const string BLUR_SHADER_LIMIT = "limit";
public const string BLUR_SHADER_BLUR = "blur";
// Animation
public const string PLAYERS_HEAD_ANIMATION_ON_DYING = "players_head_on_dying";
// Math
public const float ACCEPTABLE_TOLERANCE = 0.01f;
}