mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
18 lines
528 B
C#
18 lines
528 B
C#
// Author: Daniele Giardini - http://www.demigiant.com
|
|
// Created: 2016/05/30 13:00
|
|
// License Copyright (c) Daniele Giardini
|
|
// This work is subject to the terms at http://dotween.demigiant.com/license.php
|
|
|
|
#pragma warning disable 1591
|
|
namespace DG.Tweening.Plugins.Options
|
|
{
|
|
public struct UintOptions : IPlugOptions
|
|
{
|
|
public bool isNegativeChangeValue; // Necessary because uints can't obviously be negative
|
|
|
|
public void Reset()
|
|
{
|
|
isNegativeChangeValue = false;
|
|
}
|
|
}
|
|
} |