From 3b772d2fe6ff000ddee1c760ec503647c1b0d70e Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 26 Jul 2016 17:06:40 -0700 Subject: [PATCH] fallback to SIMPLE_COMPOUND when can't do COMPOUND --- libraries/entities/src/ModelEntityItem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entities/src/ModelEntityItem.cpp b/libraries/entities/src/ModelEntityItem.cpp index 8e925b2f79..b098247524 100644 --- a/libraries/entities/src/ModelEntityItem.cpp +++ b/libraries/entities/src/ModelEntityItem.cpp @@ -282,8 +282,8 @@ ShapeType ModelEntityItem::computeTrueShapeType() const { type = SHAPE_TYPE_COMPOUND; } if (type == SHAPE_TYPE_COMPOUND && !hasCompoundShapeURL()) { - // no compoundURL set --> fall back to NONE - type = SHAPE_TYPE_NONE; + // no compoundURL set --> fall back to SIMPLE_COMPOUND + type = SHAPE_TYPE_SIMPLE_COMPOUND; } return type; }