Hi all, I’m trying to display my array class values inside the editor, but all the values are 0
//javascript class
class testContainer {
//inspector values
var myObject : Transform[];
var max_Velocity : float = 3.0;
var max_Force : float = 0.8;
var Distance : float = 0.1;
var RotationSpeed : float = 3.0;
}
//inspector values
var TotalObj : testContainer[];
Now I see the TotalObj value on the editor, but when I create some values, all the parameters are 0 (velocity,etc,etc), and I need to fill the properties for each array value.
Am I doing something wrong? or is some kind of limitation working with arrays?
Cheers,