mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
35 lines
799 B
C#
35 lines
799 B
C#
// Author: Daniele Giardini - http://www.demigiant.com
|
|
// Created: 2015/03/29 11:12
|
|
namespace DG.Tweening
|
|
{
|
|
/// <summary>
|
|
/// Type of scramble to apply to string tweens
|
|
/// </summary>
|
|
public enum ScrambleMode
|
|
{
|
|
/// <summary>
|
|
/// No scrambling of characters
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// A-Z + a-z + 0-9 characters
|
|
/// </summary>
|
|
All,
|
|
/// <summary>
|
|
/// A-Z characters
|
|
/// </summary>
|
|
Uppercase,
|
|
/// <summary>
|
|
/// a-z characters
|
|
/// </summary>
|
|
Lowercase,
|
|
/// <summary>
|
|
/// 0-9 characters
|
|
/// </summary>
|
|
Numerals,
|
|
/// <summary>
|
|
/// Custom characters
|
|
/// </summary>
|
|
Custom
|
|
}
|
|
} |