2015-02-03 03:25:41 +08:00
|
|
|
|
///Credit ChoMPHi
|
|
|
|
|
///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/
|
|
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
|
|
namespace UnityEngine.UI.Extensions.Tweens
|
2015-02-03 03:25:41 +08:00
|
|
|
|
{
|
|
|
|
|
internal interface ITweenValue
|
|
|
|
|
{
|
|
|
|
|
void TweenValue(float floatPercentage);
|
|
|
|
|
bool ignoreTimeScale { get; }
|
|
|
|
|
float duration { get; }
|
|
|
|
|
bool ValidTarget();
|
|
|
|
|
void Finished();
|
|
|
|
|
}
|
|
|
|
|
}
|