Damn flares

Does anyone know how to remove flares in v1.40?

This ok:
sshot0124.jpg


But when i look near the sun:
sshot0125.jpg


i know i can edit some images in entities.zip to remove flares, but i actually want to remove that blinding effects, because it's a big disadvantage. If i remove the planet's image that effect disappears, but i want to have planets + flares.

pls help
 
$pref::lensflaring = False; I might have spelled it wrong, but I think that works...
$pref::lenseflaring = 0; Something like that idk. Its one of those two.
 
then try the other

its all about spelling

lensflaring might be it

I've tried

Code:
$pref::lenseflairing = "False";
$pref::lenseflaring = "False";
$pref::lensflairing = "False";
$pref::lensflaring = "False";

$pref::lenseflairing = "0";
$pref::lenseflaring = "0";
$pref::lensflairing = "0";
$pref::lensflaring = "0";

and none of them works
 
It's determined in teh map
Code:
instant SimGroup "Lights" {
		instant Planet "sunLight" {
			fileName = "lushdaysun.bmp";
			azimuth = "178.65";
			incidence = "49";
			castShadows = "True";
			useLensFlare = "True";
			intensity = "0.699953 0.699953 0.699953";
			ambient = "0.299957 0.299957 0.299957";
			size = "220";
			distance = "1200";
		};
	};
 
Last edited:
Back
Top