CTEBloodStream: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
m_vecDirection=Vector(0, 0, 0)}, nil); | m_vecDirection=Vector(0, 0, 0)}, nil); | ||
</pre> | </pre> | ||
{| class="wikitable sortable mw-collapsible mw-collapsed" style="margin: 0 auto; width: 100%; padding: 0;" | |||
|+Preview | |||
|- | |||
|[[File:CTEBloodStream.mp4|border|center|640x360px]] | |||
|} | |||
==[[Classes|Class Structure]]== | ==[[Classes|Class Structure]]== |
Revision as of 23:06, 27 November 2022
Overview
A blood particle trail, the texture of which seems to be missing as it uses the missing texture purple and black.
Source location : /game/server/te_bloodstream.cpp
tempents.Send("Blood Stream", {m_vecOrigin=Vector(0, 0, 0), r=255, g=0, b=0, a=255, m_nAmount=100, m_vecDirection=Vector(0, 0, 0)}, nil);
Class Structure
- CBaseTempEntity
- CTEParticleSystem
- CTEBloodStream
- CTEParticleSystem
SendProps
Name | Type | Description |
---|---|---|
m_vecDirection | Vector | A positional vector for the direction this particle will emit towards (Not an angular vector) |
r | Integer | The red color value |
g | Integer | The green color value |
b | Integer | The blue color value |
a | Integer | The alpha value (transparency) |
m_nAmount | Integer | How much should be emitted |