|
|
@@ -34,6 +34,7 @@
|
|
|
#include "collisionPlane.h"
|
|
|
#include "collisionSphere.h"
|
|
|
#include "collisionInvSphere.h"
|
|
|
+#include "collisionTube.h"
|
|
|
#include "textureStage.h"
|
|
|
#include "geomNode.h"
|
|
|
#include "geom.h"
|
|
|
@@ -341,6 +342,8 @@ convert_collision_node(CollisionNode *node, const WorkingNodePath &node_path,
|
|
|
nout << "Encountered unhandled collsion type: CollisionSphere" << "\n";
|
|
|
} else if (child->is_of_type(CollisionInvSphere::get_class_type())) {
|
|
|
nout << "Encountered unhandled collsion type: CollisionInvSphere" << "\n";
|
|
|
+ } else if (child->is_of_type(CollisionTube::get_class_type())) {
|
|
|
+ nout << "Encountered unhandled collsion type: CollisionTube" << "\n";
|
|
|
} else {
|
|
|
nout << "Encountered unknown CollisionSolid" << "\n";
|
|
|
}
|