public void Read(EndianBinaryReader er)
        {
            this.Name = er.ReadString(16);

            this.PositionKeyframeCount = er.ReadUInt32();
            this.RotationKeyframeCount = er.ReadUInt32();

            er.AssertUInt64(0);

            this.XPosDelta = er.ReadSingle();
            this.YPosDelta = er.ReadSingle();
            this.ZPosDelta = er.ReadSingle();

            this.XPosMin = er.ReadSingle();
            this.YPosMin = er.ReadSingle();
            this.ZPosMin = er.ReadSingle();

            er.AssertUInt32(0);

            var values = er.ReadBytes(4);
        }