Page MenuHomeFeedback Tracker

drawLine3D visibility issues: at night, through sights, and more
New, NormalPublic

Description

A control group at daytime:

  1. almost invisible at night

  1. color fades in NVG and TIs

  1. invisible through some sights

  1. invisible through some vehicle glass

Details

Severity
None
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
General
Steps To Reproduce

in 2.18 RC:

onEachFrame {
	_width=20;
	_beg = player modelToWorld [-50,100,5];
	_endR = player modelToWorld [50,100,5];
	_endG = player modelToWorld [50,100,10];
	_endB = player modelToWorld [50,100,15];
	drawLine3D [_beg, _endR, [1,0,0,1],_width];
	drawLine3D [_beg, _endG, [0,1,0,1],_width];
	drawLine3D [_beg, _endB, [0,0,1,1],_width];
	drawIcon3D ["",[1,0,0,1],_endR,0,0,0,"Red"];
	drawIcon3D ["",[0,1,0,1],_endG,0,0,0,"Green"];
	drawIcon3D ["",[0,0,1,1],_endB,0,0,0,"Blue"];
};

Event Timeline

This comment was removed by nicholsmaria.