On Apr 7, 2007, at 11:58 PM, realbasic-nug- 
[EMAIL PROTECTED] wrote:

> Date: Sat, 07 Apr 2007 21:00:46 -0600
> From: Eric Richards <[EMAIL PROTECTED]>
>
> Ok so lets say I want 10 clones ,
> Something like this :
> for a = 1 to 10
>     virtualspace.objects.append Obj.clone
>     obj.clone.position. whatever
> next
>
> Is this how you would do it ?
> I want to place each clone at different positions.

Sounds like you need to keep some references to the cloned objects.  
Something like an array of Object3Ds, ie:

Dim clones() As Object3D
for  i = 0 to 9
    clones.Append SomeOtherObject3D.clone
    virtualspace.objects.append clone(i)
    clone(i).position  whatever
next

==
Jeff Quan
[EMAIL PROTECTED]
http://www.jcquan.com/JQportfolio


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to