Closed GoogleCodeExporter closed 8 years ago
Check issue 7 (marked as fixed but isn't). Object3DContainer doesn't clone the
children, so the Object3D itself doesn't get copied.
Original comment by spiran...@gmail.com
on 20 Jan 2011 at 4:02
I confirm that it doesn't work, despite being marked as fixed.
Original comment by gambit...@gmail.com
on 7 Feb 2011 at 11:58
To fix it,add these for loops in both Clone methods(Object3d and
Object3dContainers classes)
---------------------------------------------------------
Object3d Clone() method:
for(int i=0;i < this._children.size();i++)
clone._children.add(this._children.get(i));
---------------------------------------------------------
Object3dContainer Clone() method:
for(int i = 0; i< this.numChildren();i++)
clone.addChild(this.getChildAt(i));
---------------------------------------------------------
This will fix the problem.
Original comment by gambit...@gmail.com
on 14 Feb 2011 at 2:27
Should be fixed now. Thanks all.
Original comment by l...@felar.ca
on 20 Feb 2011 at 8:05
Hmm ... I considered Min3D to be dead after weeks of no reaction and now I'm
using AndEngine but I will keep watching any progress and get back to this nice
project in case I actually need 3D.
Original comment by LWanders...@gmail.com
on 20 Mar 2011 at 6:02
Original issue reported on code.google.com by
LWanders...@gmail.com
on 24 Dec 2010 at 1:08