Skip to content

TE_LAVASPLASH

GeckoN edited this page Jan 31, 2017 · 4 revisions

A large field of red particles expanding slowly.

Parameters

Type Name Description
Vector pos Center point for the effect

API Function

No API function exists as of SC 5.02

NetworkMessage Function

void te_lavasplash(Vector pos, 
	NetworkMessageDest msgType=MSG_BROADCAST, edict_t@ dest=null)
{
	NetworkMessage m(msgType, NetworkMessages::SVC_TEMPENTITY, dest);
	m.WriteByte(TE_LAVASPLASH);
	m.WriteCoord(pos.x);
	m.WriteCoord(pos.y);
	m.WriteCoord(pos.z);
	m.End();
}
Clone this wiki locally