using System; using UnityEngine; namespace Tweening { public sealed class TransformScaleTweenerTrack : TweenerTrack { public override void UpdateComponentValue(float evaluatedTime) { this._component.localScale = Vector3.LerpUnclamped(this._from, this._to, evaluatedTime); } public override void ResetComponentValue() { if (this._dynamicFrom) { this._from = this._component.localScale; } else { this._component.localScale = this._from; } } public override void InitializeComponentValue() { if (this._dynamicFrom) { this._from = this._component.localScale; } else { this._component.localScale = this._from; } } } }