r4203 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Aug 26 11:53:40 EDT 2008


Author: div0
Date: 2008-08-26 11:53:40 -0400 (Tue, 26 Aug 2008)
New Revision: 4203

Modified:
   trunk/data/qcsrc/client/laser.qc
Log:
make the lasers less thick


Modified: trunk/data/qcsrc/client/laser.qc
===================================================================
--- trunk/data/qcsrc/client/laser.qc	2008-08-26 15:41:31 UTC (rev 4202)
+++ trunk/data/qcsrc/client/laser.qc	2008-08-26 15:53:40 UTC (rev 4203)
@@ -11,7 +11,7 @@
 		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);
 }
 




More information about the nexuiz-commits mailing list