Added proper toString Method to TimestampValue for easier debugging

This commit is contained in:
CrushedPixel
2015-07-23 12:34:30 +02:00
parent d46be20d72
commit 528ee52754

View File

@@ -29,4 +29,9 @@ public class TimestampValue implements KeyframeValue {
public Interpolation getCubicInterpolator() {
return new GenericSplineInterpolation<TimestampValue>();
}
@Override
public String toString() {
return "TimestampValue: "+asInt();
}
}