Skip to content

Commit

Permalink
Merge branch 'master' of github.com:away3d/away3d-core-broomstick
Browse files Browse the repository at this point in the history
  • Loading branch information
richardolsson committed Jul 14, 2011
2 parents b2637df + 837cf53 commit e97ee14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/away3d/containers/ObjectContainer3D.as
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ package away3d.containers

var len : uint = _children.length;
for (var i : uint = 0; i < len; ++i) {
addChild(ObjectContainer3D(_children[i].clone()));
clone.addChild(ObjectContainer3D(_children[i].clone()));
}

// todo: implement for all subtypes
Expand Down
2 changes: 1 addition & 1 deletion src/away3d/entities/Mesh.as
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@

len = numChildren;
for (i = 0; i < len; ++i) {
addChild(ObjectContainer3D(getChildAt(i).clone()));
clone.addChild(ObjectContainer3D(getChildAt(i).clone()));
}

return clone;
Expand Down

0 comments on commit e97ee14

Please sign in to comment.