i was curious if you could change the color of the crosshair at all... I was digging through the Json and cant seem to find where the color if it is referenced and the black spec is extremely hard to see especially for my old blind self lol
Change crosshair color?
Have a look at modifying the .cs file
Open Build.cs in your code editor and search for this (Line 1249 currently)
... UI.CreateElementContainer("Overlay", "BuildCrosshair", "0.1 0.1 0.1 1", "0.499 0.499", "0.501 0.501", false);
"0.1 0.1 0.1 1" is setting the crosshair to Red=10% Green=10% Blue=10%
edit this to "1 0 0 1" for a pure red crosshair, "0 1 0 1" for green etc... don't change the last '1'
This tool is handy to find the RGB (FME) value
https://www.tydac.ch/color/
"0.1 0.1 0.1 1" is setting the crosshair to Red=10% Green=10% Blue=10%
edit this to "1 0 0 1" for a pure red crosshair, "0 1 0 1" for green etc... don't change the last '1'
This tool is handy to find the RGB (FME) value
https://www.tydac.ch/color/