No switch I'm aware of but, as others have said, it's from the helmet in game that creates the "lense" effects.
You do know you're wearing a helmet right?
<LensFlares>
<Off>
<LocalisationName>$QUALITY_OFF;</LocalisationName>
<Enabled>false</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</Off>
<Low>
<LocalisationName>$QUALITY_LOW;</LocalisationName>
<Enabled>true</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</Low>
<Medium>
<LocalisationName>$QUALITY_MEDIUM;</LocalisationName>
<Enabled>true</Enabled>
<QualityIndex>1</QualityIndex>
<ImportanceThreshold>1</ImportanceThreshold>
</Medium>
<High>
<LocalisationName>$QUALITY_HIGH;</LocalisationName>
<Enabled>true</Enabled>
<QualityIndex>1</QualityIndex>
<ImportanceThreshold>0</ImportanceThreshold>
</High>
</LensFlares>
<LensFlares>
<Off>
<LocalisationName>$QUALITY_OFF;</LocalisationName>
<Enabled>false</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</Off>
<Low>
<LocalisationName>$QUALITY_LOW;</LocalisationName>
<Enabled>false</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</Low>
<Medium>
<LocalisationName>$QUALITY_MEDIUM;</LocalisationName>
<Enabled>false</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</Medium>
<High>
<LocalisationName>$QUALITY_HIGH;</LocalisationName>
<Enabled>false</Enabled>
<QualityIndex>0</QualityIndex>
<ImportanceThreshold>2</ImportanceThreshold>
</High>
</LensFlares>
You can get rid off lens flare.
Locate your installation folder (where elitedangerous32.exe is)
Locate the file GraphicsConfiguration and make a backup!
Open the file
Locate these lines
Code:<LensFlares> <Off> <LocalisationName>$QUALITY_OFF;</LocalisationName> <Enabled>false</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </Off> <Low> <LocalisationName>$QUALITY_LOW;</LocalisationName> <Enabled>true</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </Low> <Medium> <LocalisationName>$QUALITY_MEDIUM;</LocalisationName> <Enabled>true</Enabled> <QualityIndex>1</QualityIndex> <ImportanceThreshold>1</ImportanceThreshold> </Medium> <High> <LocalisationName>$QUALITY_HIGH;</LocalisationName> <Enabled>true</Enabled> <QualityIndex>1</QualityIndex> <ImportanceThreshold>0</ImportanceThreshold> </High> </LensFlares>
Replace with
Code:<LensFlares> <Off> <LocalisationName>$QUALITY_OFF;</LocalisationName> <Enabled>false</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </Off> <Low> <LocalisationName>$QUALITY_LOW;</LocalisationName> <Enabled>false</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </Low> <Medium> <LocalisationName>$QUALITY_MEDIUM;</LocalisationName> <Enabled>false</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </Medium> <High> <LocalisationName>$QUALITY_HIGH;</LocalisationName> <Enabled>false</Enabled> <QualityIndex>0</QualityIndex> <ImportanceThreshold>2</ImportanceThreshold> </High> </LensFlares>
Enjoy!