Topic: Little help

Hello all ,

Thank for your work .

i have a question about script :

what return  :getPosition(object)   a table ?

i have try : x,y,z=getPosition(object) but dont run.

Any help ?

( desolé je suis nul en anglais ^^ )

Re: Little help

Hi !

yes it returns a table (getPosition renvoi un tableau) :

pos = getPosition(object)
x = pos[1]
y = pos[2]
z = pos[3]

Re: Little help

Merci ^^