Fix compile error for older versions of maya

This commit is contained in:
rdb 2012-10-03 20:21:23 +00:00
parent b53de998c9
commit c9fa929659
1 changed files with 1 additions and 1 deletions

View File

@ -1730,7 +1730,7 @@ bool MayaEggLoader::ConvertEggData(EggData *data, bool merge, bool model, bool a
// Check the "Display Colors" box by default, so that vertex
// colors (if any) will be visible.
MPlug displayColors = mfn.findPlug("displayColors");
displayColors.setBool(true);
displayColors.setValue((bool)true);
mesh->_shapeNode = mfn.object();
mfn.getPath(mesh->_shape_dag_path);