Search Unity

Why does the Editor not displace Double Arrays?

Discussion in 'Editor & General Support' started by RetroCoders, Feb 26, 2015.

  1. RetroCoders

    RetroCoders

    Joined:
    Jul 11, 2013
    Posts:
    4
    I have the following array elements in Unity, using Java.

    public var ObjectType : int[];
    public var REF_GO: GameObject[];
    public var GameItemsDetails :String[];

    public var Coord_X: double[];
    public var Coord_Y: double[];
    public var Coord_Z: double[];

    When in the editor I can see the first 3 arrays ok, but the double arrays do not show up!

    Is this normal?
     
  2. fffMalzbier

    fffMalzbier

    Joined:
    Jun 14, 2011
    Posts:
    3,276
    In c# it woks fine:
    Code (CSharp):
    1.     public double testd;
    2.     public double[] testdArray;
    Not sure about the js code.