firefly2442 6 Posted March 10, 2013 https://community.bistudio.com/wiki/drawLine3D Anyone get the drawLine3D method working? private ["_player","_marker_pos"]; //https://community.bistudio.com/wiki/drawLine3D _player = getPos player; _marker_pos = getMarkerPos "marker1"; drawLine3D [_player, _marker_pos, [1,1,1,1]]; //tried with both 0 and 1 for alpha value hint "Finished"; This is what I have. There are no errors but nothing is visible. Share this post Link to post Share on other sites
BlenderRUS 6 Posted March 15, 2013 It works but TTL as about 0.05 seconds. Just use cycle. Share this post Link to post Share on other sites
zooloo75 834 Posted March 15, 2013 onEachFrame { private ["_player","_marker_pos"]; _player = getPos player; _marker_pos = getMarkerPos "marker1"; drawLine3D [_player, _marker_pos, [1,1,1,1]]; //tried with both 0 and 1 for alpha value }; Share this post Link to post Share on other sites