mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
We need to actually implement these.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@535 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
4d9b310c5c
commit
3822458c53
1 changed files with 23 additions and 0 deletions
|
@ -851,6 +851,29 @@ void CL_ParseTEnt (void)
|
|||
|
||||
break;
|
||||
|
||||
case 74://TE_FLAMEJET
|
||||
#pragma message("CL_ParseTEnt: effect 74 not implemented (properly)")
|
||||
pos[0] = MSG_ReadCoord ();
|
||||
pos[1] = MSG_ReadCoord ();
|
||||
pos[2] = MSG_ReadCoord ();
|
||||
|
||||
pos2[0] = MSG_ReadCoord ();
|
||||
pos2[1] = MSG_ReadCoord ();
|
||||
pos2[2] = MSG_ReadCoord ();
|
||||
cnt = MSG_ReadByte ();
|
||||
|
||||
R_ParticleExplosion (pos);
|
||||
break;
|
||||
|
||||
case 75://TE_PLASMABURN
|
||||
#pragma message("CL_ParseTEnt: effect 75 not implemented (properly)")
|
||||
pos[0] = MSG_ReadCoord ();
|
||||
pos[1] = MSG_ReadCoord ();
|
||||
pos[2] = MSG_ReadCoord ();
|
||||
|
||||
R_ParticleExplosion (pos);
|
||||
break;
|
||||
|
||||
case 76:
|
||||
#pragma message("CL_ParseTEnt: effect 76 not implemented")
|
||||
pos[0] = MSG_ReadCoord ();
|
||||
|
|
Loading…
Reference in a new issue