From f97ae9fe548e596540de29842134b3511439da0e Mon Sep 17 00:00:00 2001 From: Amorilia <amorilia@users.sourceforge.net> Date: Thu, 25 Nov 2010 19:25:44 +0000 Subject: [PATCH] Fixed RemoveChild for nifs that have their skin influence flag set on NiNodes that aren't actually bone influences. --- src/obj/NiNode.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/obj/NiNode.cpp b/src/obj/NiNode.cpp index 8b134e09..01407852 100644 --- a/src/obj/NiNode.cpp +++ b/src/obj/NiNode.cpp @@ -228,11 +228,6 @@ void NiNode::RemoveChild( Ref<NiAVObject> obj ) { //Search child list for the one to remove for ( vector< NiAVObjectRef >::iterator it = children.begin(); it != children.end(); ) { if ( *it == obj ) { - //Ensure that this child is not a skin influence - NiNodeRef niNode = DynamicCast<NiNode>((*it)); - if ( niNode != NULL && niNode->IsSkinInfluence() == true ) { - throw runtime_error("You cannot remove a node child that is a skin influence. Detatch the skin first."); - } (*it)->SetParent(NULL); it = children.erase( it ); } else { -- GitLab