mirror of
https://github.com/chev2/terraria-mods.git
synced 2026-04-24 03:32:05 +00:00
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:
parent
33417842b8
commit
7a15df017f
4 changed files with 23 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue