From 1368bd3cc8a0f096401fadc9173e84fae8a9dcf1 Mon Sep 17 00:00:00 2001 From: div0 Date: Tue, 26 Aug 2008 15:53:40 +0000 Subject: [PATCH] make the lasers less thick git-svn-id: svn://svn.icculus.org/nexuiz/trunk@4203 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/client/laser.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/qcsrc/client/laser.qc b/data/qcsrc/client/laser.qc index e4249ab75..5cfdcbea9 100644 --- a/data/qcsrc/client/laser.qc +++ b/data/qcsrc/client/laser.qc @@ -11,7 +11,7 @@ void Draw_Laser() return; makevectors(self.angles); traceline(self.origin, self.origin + v_forward * 32768, 0, self); - Draw_CylindricLine(self.origin, trace_endpos, 4, "particles/laserbeam", 1, self.colormod, DRAWFLAG_ADDITIVE); // TODO make a texture to make the laser look smoother + Draw_CylindricLine(self.origin, trace_endpos, 2, "particles/laserbeam", 1, self.colormod, DRAWFLAG_ADDITIVE); // TODO make a texture to make the laser look smoother pointparticles(self.cnt, trace_endpos, trace_plane_normal, 256 * drawframetime); } -- 2.39.2