mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
23 lines
703 B
C#
23 lines
703 B
C#
// Author: Daniele Giardini - http://www.demigiant.com
|
|
// Created: 2014/07/12 12:55
|
|
//
|
|
// License Copyright (c) Daniele Giardini.
|
|
// This work is subject to the terms at http://dotween.demigiant.com/license.php
|
|
|
|
namespace DG.Tweening
|
|
{
|
|
/// <summary>
|
|
/// Types of autoPlay behaviours
|
|
/// </summary>
|
|
public enum AutoPlay
|
|
{
|
|
/// <summary>No tween is automatically played</summary>
|
|
None,
|
|
/// <summary>Only Sequences are automatically played</summary>
|
|
AutoPlaySequences,
|
|
/// <summary>Only Tweeners are automatically played</summary>
|
|
AutoPlayTweeners,
|
|
/// <summary>All tweens are automatically played</summary>
|
|
All
|
|
}
|
|
} |