1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 09:16:02 +08:00
2020-01-17 00:11:15 +09:00

21 lines
584 B
C#

// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2014/07/03 12:11
//
// 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 log behaviours
/// </summary>
public enum LogBehaviour
{
/// <summary>Log only warnings and errors</summary>
Default,
/// <summary>Log warnings, errors and additional infos</summary>
Verbose,
/// <summary>Log only errors</summary>
ErrorsOnly
}
}