flashlight values ​​updated

This commit is contained in:
jadis0x
2023-01-10 20:40:11 +03:00
committed by GitHub
parent ee4f2bf31b
commit 91333aae6e

View File

@@ -183,13 +183,13 @@ namespace DevourClient.Hacks
if (reset) if (reset)
{ {
flashlightSpot.intensity = 1.5f; flashlightSpot.intensity = 1.4f;
flashlightSpot.range = 9f; flashlightSpot.range = 9f;
flashlightSpot.spotAngle = 70f; flashlightSpot.spotAngle = 70f;
} }
else else
{ {
flashlightSpot.intensity = 1.5f; flashlightSpot.intensity = 1.1f;
flashlightSpot.range = 200f; flashlightSpot.range = 200f;
flashlightSpot.spotAngle = 90f; flashlightSpot.spotAngle = 90f;
} }
@@ -212,17 +212,19 @@ namespace DevourClient.Hacks
if (reset) if (reset)
{ {
flashlightSpot.intensity = 1.5f; flashlightSpot.intensity = 1.4f;
flashlightSpot.range = 9f; flashlightSpot.range = 9f;
flashlightSpot.spotAngle = 70f; flashlightSpot.spotAngle = 70f;
flashlightSpot.type = LightType.Spot; flashlightSpot.type = LightType.Spot;
flashlightSpot.shadows = LightShadows.Soft;
} }
else else
{ {
flashlightSpot.intensity = 1.5f; flashlightSpot.intensity = 1.1f;
flashlightSpot.range = 200f; flashlightSpot.range = 200f;
flashlightSpot.spotAngle = 180f; flashlightSpot.spotAngle = 179f;
flashlightSpot.type = LightType.Point; flashlightSpot.type = LightType.Point;
flashlightSpot.shadows = LightShadows.None;
} }
} }