/****************************************************************************** * Copyright (C) Ultraleap, Inc. 2011-2021. * * * * Use subject to the terms of the Apache License 2.0 available at * * http://www.apache.org/licenses/LICENSE-2.0, or another agreement * * between Ultraleap and you, your company or other organization. * ******************************************************************************/ namespace Leap.Unity.Animation { public enum Direction { Forward = 1, Backward = -1 } public enum SmoothType { Linear = 1, Smooth = 2, SmoothEnd = 3, SmoothStart = 4 } }