You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
855 B
36 lines
855 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#include "cbase.h"
|
||
|
#include "c_physbox.h"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
IMPLEMENT_CLIENTCLASS_DT(C_PhysBox, DT_PhysBox, CPhysBox)
|
||
|
RecvPropFloat(RECVINFO(m_mass), 0), // Test..
|
||
|
END_RECV_TABLE()
|
||
|
|
||
|
|
||
|
C_PhysBox::C_PhysBox()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Should this object cast shadows?
|
||
|
//-----------------------------------------------------------------------------
|
||
|
ShadowType_t C_PhysBox::ShadowCastType()
|
||
|
{
|
||
|
if (IsEffectActive(EF_NODRAW | EF_NOSHADOW))
|
||
|
return SHADOWS_NONE;
|
||
|
return SHADOWS_RENDER_TO_TEXTURE;
|
||
|
}
|
||
|
|
||
|
C_PhysBox::~C_PhysBox()
|
||
|
{
|
||
|
}
|
||
|
|