Git Repos / fte_dogmode / qc / info / fog.qc
Last update to this file was on 2025-03-30 at 19:29.
Show fog.qc
//==============================================================================
// info_fog -- MG1 Machine Games Dimension Of The Machine compat -- CEV
//==============================================================================
//======================================================================
// forward declarations
//======================================================================
#ifdef SSQC
// info_fog
void(entity e) info_fog_init;
void() info_fog;
#endif
//------------------------------------------------------------------------------
#ifdef SSQC
/*QUAKED info_fog (0.5 .5 .8) (-8 -8 -8) (8 8 8)
Fog value definition
wait: fog density
dest: fog color
*/
//----------------------------------------------------------------------
// class info_fog: base_mapentity
// {
//--------------------------------------------------------------
void(entity e) info_fog_init =
{
e.classname = "info_fog";
e.classtype = CT_INFO_FOG;
base_mapentity_init (e);
// TODO CEV the following looks mangled.
// Why is that else there? Should be validated.
if (!self.fog_density)
{
self.fog_density = 0.05;
}
else if (self.fog_color_x > 1.0 || self.fog_color_y > 1.0 ||
self.fog_color_z > 1.0)
{
//Not in 0..1 range?
self.fog_color = self.fog_color * (1.0 / 255);
}
};
//--------------------------------------------------------------
void() info_fog =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;
info_fog_init (self);
};
// };
#endif
Return to the top of this page or return to the overview of this repo.
Log fog.qc
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2025-03-30 | Big commit. Entity networking, etc. | cev | +57 |
Return to the top of this page or return to the overview of this repo.