Fixed some bugs with the new Keyframe system, and now it generates the correct values.

This commit is contained in:
Jonathan Thomas
2012-10-19 21:50:50 -05:00
parent f291700701
commit 19612f63bd
3 changed files with 10 additions and 13 deletions

View File

@@ -16,11 +16,9 @@ void FrameReady(int number)
int main()
{
Keyframe time;
time.AddPoint(1, 300);
time.AddPoint(200, 500, LINEAR);
//time.AddPoint(1, 300);
time.AddPoint(1, 500, LINEAR);
time.AddPoint(400, 100);
time.AddPoint(500, 500);
time.PrintValues();