mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
19 lines
452 B
C#
19 lines
452 B
C#
// Author: Daniele Giardini - http://www.demigiant.com
|
|
// Created: 2014/07/10 19:18
|
|
//
|
|
// 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 RectOptions : IPlugOptions
|
|
{
|
|
public bool snapping;
|
|
|
|
public void Reset()
|
|
{
|
|
snapping = false;
|
|
}
|
|
}
|
|
} |