1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/public/bone_accessor.cpp
2010-07-22 01:46:14 -05:00

38 lines
800 B
C++

//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "bone_accessor.h"
// NOTE: This has to be the last file included!
#include "tier0/memdbgon.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