1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 09:38:56 +08:00
hl2sdk/public/bone_accessor.cpp
2013-06-26 15:22:04 -07:00

35 lines
707 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "bone_accessor.h"
#if defined( CLIENT_DLL ) && defined( _DEBUG )
void CBoneAccessor::SanityCheckBone( int iBone, bool bReadable ) const
{
if ( m_pAnimating )
{
CStudioHdr *pHdr = m_pAnimating->GetModelPtr();
if ( pHdr )
{
mstudiobone_t *pBone = pHdr->pBone( iBone );
if ( bReadable )
{
AssertOnce( pBone->flags & m_ReadableBones );
}
else
{
AssertOnce( pBone->flags & m_WritableBones );
}
}
}
}
#endif