Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

Difference between revisions of "jctest.qc"

From Quake Wiki

(Created page with "This Quake-C file contains the code for a test trigger. It is not used anywhere in the game. <pre> void() jctrig = { dprint ("here\n\n"); lightstyle(0, "az"); }; /*QUA...")
 
(No difference)

Latest revision as of 12:46, 29 March 2013

This Quake-C file contains the code for a test trigger. It is not used anywhere in the game.


void() jctrig =
{
dprint ("here\n\n");
	lightstyle(0, "az");
};

/*QUAKED trigger_jctest (.5 .5 .5) ?
*/
void() trigger_jctest =
{
	setsize (self, self.mins, self.maxs);
	self.solid = SOLID_EDGE;
	self.touch = jctrig;
};
(Version 1.06)