CTEGaussExplosion: Difference between revisions

From SigMod
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:


'''Source location : [https://github.com/sreechar/TF2-Source-Code/tree/master/tf2_src/game/server/hl2/te_gaussexplosion.cpp /game/server/hl2/gaussexplosion.cpp]'''
'''Source location : [https://github.com/sreechar/TF2-Source-Code/tree/master/tf2_src/game/server/hl2/te_gaussexplosion.cpp /game/server/hl2/gaussexplosion.cpp]'''
<pre>
tempents.Send("GaussExplosion", {m_vecOrigin=Vector(0, 0, 0),
                                m_nType=0,
                                m_vecDirection=Vector(0, 0, 0)}, nil);
</pre>


==[[SendProps|Class Structure]]==
==[[SendProps|Class Structure]]==
Line 22: Line 28:
| style="width: 50%;" |'''m_vecDirection'''
| style="width: 50%;" |'''m_vecDirection'''
| style="width: 15%;" |Vector
| style="width: 15%;" |Vector
| style="width: 35%;" |
| style="width: 35%;" |A positional vector for the direction this particle will emit towards (Not an angular vector)
|}
|}

Revision as of 22:40, 27 November 2022

Overview

...

Source location : /game/server/hl2/gaussexplosion.cpp

tempents.Send("GaussExplosion", {m_vecOrigin=Vector(0, 0, 0),
                                 m_nType=0,
                                 m_vecDirection=Vector(0, 0, 0)}, nil);

Class Structure

SendProps

CTEGaussExplosion
Name Type Description
m_nType Integer
m_vecDirection Vector A positional vector for the direction this particle will emit towards (Not an angular vector)