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.
51 lines
1.5 KiB
51 lines
1.5 KiB
//====== Copyright © 1996-2004, Valve Corporation, All rights reserved. =====//
|
|
//
|
|
// Dme version of a collision model
|
|
//
|
|
//===========================================================================//
|
|
|
|
#ifndef DMECOLLISIONMODEL_H
|
|
#define DMECOLLISIONMODEL_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "datamodel/dmelement.h"
|
|
#include "datamodel/dmattributevar.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward Declarations
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeModel;
|
|
class CDmeDag;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// A class representing an attachment point
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeCollisionModel : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmeCollisionModel, CDmElement );
|
|
|
|
public:
|
|
CDmaVar< float > m_flMass;
|
|
CDmaVar< bool > m_bAutomaticMassComputation;
|
|
CDmaVar< float > m_flInertia;
|
|
CDmaVar< float > m_flDamping;
|
|
CDmaVar< float > m_flRotationalDamping;
|
|
CDmaVar< float > m_flDrag;
|
|
CDmaVar< int > m_nMaxConvexPieces;
|
|
CDmaVar< bool > m_bRemove2D;
|
|
CDmaVar< float > m_flWeldPositionTolerance;
|
|
CDmaVar< float > m_flWeldNormalTolerance;
|
|
CDmaVar< bool > m_bConcave;
|
|
CDmaVar< bool > m_bForceMassCenter;
|
|
CDmaVar< Vector > m_vecMassCenter;
|
|
CDmaVar< bool > m_bAssumeWorldSpace;
|
|
CDmaString m_SurfaceProperty;
|
|
};
|
|
|
|
|
|
#endif // DMECOLLISIONMODEL_H
|