1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-21 01:36:05 +08:00
Daniele Giardini 38d7a1b04c - Added rich text support to string tweens (still needs work)
- Added ScrambleMode enum for additional scrambleMode options
2015-03-29 12:31:33 +02:00

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
}
}