Minor fixes, no API change.

This commit is contained in:
enn0x 2011-08-25 21:51:53 +00:00
parent 5ebc96d531
commit 35a3287abd
2 changed files with 4 additions and 2 deletions

View File

@ -117,9 +117,9 @@ public:
return _type_handle; return _type_handle;
} }
static void init_type() { static void init_type() {
PandaNode::init_type(); GeomNode::init_type();
register_type(_type_handle, "BulletDebugNode", register_type(_type_handle, "BulletDebugNode",
PandaNode::get_class_type()); GeomNode::get_class_type());
} }
virtual TypeHandle get_type() const { virtual TypeHandle get_type() const {
return get_class_type(); return get_class_type();

View File

@ -16,6 +16,8 @@
#include "bulletRigidBodyNode.h" #include "bulletRigidBodyNode.h"
#include "bulletGhostNode.h" #include "bulletGhostNode.h"
#include "geomLines.h"
#include "geomTriangles.h"
#include "geomVertexRewriter.h" #include "geomVertexRewriter.h"
PT(InternalName) BulletHelper::_sb_index; PT(InternalName) BulletHelper::_sb_index;