DatDigger.Sections.Animation.SpuCurveLoader.CreateUncompressedLinearCurve C# (CSharp) Method

CreateUncompressedLinearCurve() private static method

private static CreateUncompressedLinearCurve ( BinaryReaderEx reader, AnimatedComponent component, short count ) : Curves.LinearCurve
reader BinaryReaderEx
component AnimatedComponent
count short
return Curves.LinearCurve
        private static Curves.LinearCurve CreateUncompressedLinearCurve(BinaryReaderEx reader, AnimatedComponent component, short count)
        {
            var result = new Curves.LinearCurve(component);

            System.Diagnostics.Trace.WriteLine("Found UncompressedLinearCurve but we don't parse them properly yet :(");

            reader.BaseStream.Position += 6 * count;
            return result;
        }