Thank you John.
I'm able to get two sharks to show up now, but the second clone is
super tiny small and I cannot get it display at the same scale the
first shark is at.
container = ObjectContainer3D(ev.resource);
container.scale(90);
container.y = -400;
_view.scene.addChild(container);
var mclone:ObjectContainer3D =
ObjectContainer3D(container.getChildAt(0).clone());
mclone.scale(90); // changing this has no effect
mclone.x = 400;
_view.scene.addChild(mclone);
On Apr 20, 12:50 pm, John Brookes <[email protected]> wrote:
> private function onResourceRetrieved(e : ResourceEvent) : void
> {
> container = ObjectContainer3D(e.resource);
> view.scene.addChild(container);
>
> var mclone:ObjectContainer3D =
> ObjectContainer3D(container.getChildAt(0).clone());
> mclone.x = 400;
> view.scene.addChild(mclone);
> ...