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

jctest.qc

From Quake Wiki

Revision as of 12:46, 29 March 2013 by Negke (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)