Implemented room blocking in game.

This commit is contained in:
Max 2025-02-24 13:59:06 +01:00
parent 18908b2ae7
commit 1e95378bb1
24 changed files with 25172 additions and 65 deletions

View file

@ -2,7 +2,10 @@ using UnityEngine;
public static class ColorHelper
{
public static Color OkayGreen = new Color(12f, 202f, 0f);
public static readonly Color OkayGreen = new Color(12f, 202f, 0f);
public const float TEXT_FADED_OPACITY = .5f;
public const float TEXT_FULL_OPACITY = 1f;
public static Color AddColorTint(Color originalColor, Color tintColor, float tintIntensity)
{