Code: Select all
<_line_thickness>
<copy src="screen" trait="resolutionconverter"/> <!--VUI+ resolutionconverter is the size of a single pixel in the current resolution -->
<mul>
<floor> <!--VUI+ use rounded values otherwise we'll have blurry lines! -->
<copy> 2.6 </copy>
<!--VUI+ vanilla is reducing line thickness when resolutions grow above 2K because the resolutionconverter gets less than 1 -->
<div src="screen" trait="resolutionconverter"/>
</floor>
<max> 1 </max> <!--VUI+ to support the absolute minimum 640x360 screen resolution -->
</mul>
</_line_thickness>
