// Author: Daniele Giardini - http://www.demigiant.com // Created: 2014/09/07 10:22 // // License Copyright (c) Daniele Giardini. // This work is subject to the terms at http://dotween.demigiant.com/license.php namespace DG.Tweening { /// /// Path mode (used to determine correct LookAt orientation) /// public enum PathMode { /// Ignores the path mode (and thus LookAt behaviour) Ignore, /// Regular 3D path Full3D, /// 2D top-down path TopDown2D, /// 2D side-scroller path Sidescroller2D } }