SliderAnimationBehaviour.cs 413 B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. namespace UnityUIPlayables
  4. {
  5. [Serializable]
  6. public class SliderAnimationBehaviour : AnimationBehaviour
  7. {
  8. [SerializeField] private SliderAnimationValue _startValue;
  9. [SerializeField] private SliderAnimationValue _endValue;
  10. public SliderAnimationValue StartValue => _startValue;
  11. public SliderAnimationValue EndValue => _endValue;
  12. }
  13. }