Renamed "Camera Tilt" to "Camera Roll" (new naming convention!)

Changed Camera Roll to use Degree Values
Started adding Timeline Position Editing to GuiEditKeyframe
This commit is contained in:
CrushedPixel
2015-05-22 17:06:36 +02:00
parent 9396687802
commit cbbc50a37a
15 changed files with 166 additions and 49 deletions

View File

@@ -22,7 +22,7 @@ public class LinearPoint extends LinearInterpolation<Position> {
float pitch = (float)getInterpolatedValue(first.getPitch(), second.getPitch(), perc);
float yaw = (float)getInterpolatedValue(first.getYaw(), second.getYaw(), perc);
float rot = (float)getInterpolatedValue(first.getRotation(), second.getRotation(), perc);
float rot = (float)getInterpolatedValue(first.getRoll(), second.getRoll(), perc);
Position inter = new Position(x, y, z, pitch, yaw, rot);