Skip to content

Commit

Permalink
Slightly increase Mage Light range and intensity
Browse files Browse the repository at this point in the history
It looks like this example spell is sticking around. So try to make it more equal to magic candle in usefulness.
As candle appears in front of player and mage light is centred on player, make mage light radius a bit larger so it casts ahead of player an equal distance to magic candle.
As mage light has a soft coloured glow, slightly increase intensity.
  • Loading branch information
Interkarma committed Oct 11, 2023
1 parent 3a251d1 commit aa996c3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -195,7 +195,8 @@ void StartLight()
myLight = go.AddComponent<Light>();
myLight.type = LightType.Point;
myLight.color = variantProperties[currentVariant].effectColor;
myLight.range = 14;
myLight.range = 18.0f;
myLight.intensity = 1.1f;
}

void EndLight()
Expand Down

0 comments on commit aa996c3

Please sign in to comment.