- bug fix: mesh object is created corectly after unsubscribing from

geometry node
 - merged patch from Ben Batt, subsurf modifier still doesn't work ...
    I will add list of edges to VGeomData structure
 - added some missing derivedmesh methods after merging of ben's gsoc
   projects
This commit is contained in:
2006-08-30 10:55:46 +00:00
parent 03bab43951
commit cc6f92cb1a
3 changed files with 219 additions and 12 deletions

View File

@@ -390,8 +390,8 @@ void b_verse_unsubscribe(VNode *vnode)
while(vlink){
if(vlink->target->type == V_NT_GEOMETRY) {
struct Mesh *me;
me = ((VGeomData*)vnode->data)->mesh;
create_meshdata_from_geom_node(me, vnode);
me = ((VGeomData*)vlink->target->data)->mesh;
create_meshdata_from_geom_node(me, vlink->target);
break;
}
vlink = vlink->next;