diff --git a/scripts/utils/constants.gd b/scripts/utils/constants.gd index 6999be76..fed0a56a 100644 --- a/scripts/utils/constants.gd +++ b/scripts/utils/constants.gd @@ -3,8 +3,8 @@ class_name Constants const DEFAULT_ATLAS_SIZE = 128 const INVENTORY_ATLAS_SIZE: int = 128 -const INVENTORY_BG_COLOR: String = "07263d" -const INVENTORY_FG_COLOR: String = "ffffff" +const INVENTORY_BG_COLOR: String = "07263dc8" +const INVENTORY_FG_COLOR: String = "ffffffff" const INVENTORY_MIN_BG_BLUR: float = 0.0 const INVENTORY_MAX_BG_BLUR: float = 3.0 static func INVENTORY_SELECTOR_POS(i: int) -> float: return -(81.25*((i-2)*2)-81.25) # Needs an offset to the left, partially works right now