From fef4dbd9be1bba667175bbb90b9ac3435e42db02 Mon Sep 17 00:00:00 2001 From: "Asad M. Zaman" Date: Wed, 29 Nov 2006 21:42:26 +0000 Subject: [PATCH] changed a notify message --- pandatool/src/mayaegg/mayaToEggConverter.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandatool/src/mayaegg/mayaToEggConverter.cxx b/pandatool/src/mayaegg/mayaToEggConverter.cxx index 793ba59de1..a298db5d37 100644 --- a/pandatool/src/mayaegg/mayaToEggConverter.cxx +++ b/pandatool/src/mayaegg/mayaToEggConverter.cxx @@ -785,6 +785,10 @@ convert_hierarchy(EggGroupNode *egg_root) { mayaegg_cat.info() << "will round up uv coordinates" << endl; } + if (_keep_all_uvsets) { + mayaegg_cat.info() << "will keep_all_uvsets" << endl; + } + _tree.clear_egg(get_egg_data(), egg_root, NULL, NULL); for (int i = 0; i < num_nodes; i++) { MayaNodeDesc *node = _tree.get_node(i); @@ -1844,7 +1848,7 @@ make_polyset(MayaNodeDesc *node_desc, const MDagPath &dag_path, } bool keep_all_uvsets = _keep_all_uvsets || node_desc->has_object_type("keep-all-uvsets"); - if (keep_all_uvsets) { + if (node_desc->has_object_type("keep-all-uvsets")) { mayaegg_cat.info() << "will keep_all_uvsets" << endl; }