// Token: 0x06000FDF RID: 4063 RVA: 0x0004B1F0 File Offset: 0x000493F0
        public static float[] GetMVReal32(byte[] buff, ref int pos, int posMax)
        {
            uint dword = ParseSerialize.GetDword(buff, ref pos, posMax);

            ParseSerialize.CheckCount(dword, 4, posMax - pos);
            float[] array = new float[dword];
            int     num   = 0;

            while ((long)num < (long)((ulong)dword))
            {
                array[num] = ParseSerialize.GetFloat(buff, ref pos, posMax);
                num++;
            }
            return(array);
        }