Hey, I have an Array declared with:
var liste = []
this gets filled with some RigidBodys by the _ready() function. I also have an index of type int.
Ideally I would now want to be able to say
liste[index].linear_velocity = 1
But it doesnt let me, it doesnt even show what options i have after liste[index]
Am i doing something wrong here?