LifeSourcesLight v1.2.0

[v1.2.0] 2023-08-06
- Update for tModLoader v1.4.4
- Life Fruits now glow yellow instead of green to better distinguish them from Jungle Spores
This commit is contained in:
Chev 2023-08-06 01:59:45 -07:00
parent 33417842b8
commit 7a15df017f
Signed by: chev2
GPG key ID: BE0CFBD5DCBB2511
4 changed files with 23 additions and 4 deletions

View file

@ -12,8 +12,8 @@ namespace LifeSourcesLight
{
if (type == TileID.LifeFruit && LifeSourcesLight.EnableLifeFruitLight)
{
r = (170f / 255f) * LifeFruitBrightCoefficient;
g = (221f / 255f) * LifeFruitBrightCoefficient;
r = (221f / 255f) * LifeFruitBrightCoefficient;
g = (181f / 255f) * LifeFruitBrightCoefficient;
b = (43f / 255f) * LifeFruitBrightCoefficient;
}
}

View file

@ -0,0 +1,15 @@
Configs: {
LifeSourcesLightConfig: {
DisplayName: Config
EnableHeartCrystalLight: {
Label: Enable Lighting for Heart Crystal
Tooltip: Whether or not to enable lighting for the Heart Crystal.
}
EnableLifeFruitLight: {
Label: Enable Lighting for Life Fruit
Tooltip: Whether or not to enable lighting for the Life Fruit.
}
}
}

View file

@ -1,5 +1,5 @@
displayName = Heart Crystal & Life Fruit Glow
author = Chev
version = 1.1.0
version = 1.2.0
homepage = https://github.com/chev2/terraria-mods
side = Client

View file

@ -1,6 +1,10 @@
Makes heart crystals & life fruits emit light.
Makes heart crystals [i/s1:29] & life fruits [i/s1:1291] emit light.
[c/00FFFF:Changelog]
[v1.2.0] 2023-08-06
- Update for tModLoader v1.4.4
- Life Fruits now glow yellow instead of green to better distinguish them from Jungle Spores
[v1.1.0] 2022-08-26
- Added:
- A basic config to enable/disable the Heart Crystal and Life Fruit glows individually.