|
- using System;
- using UnityEngine;
-
- namespace Tweening
- {
- public abstract class TweenerTrack<TComponent, TFromProperty, TToProperty> : TweenerTrackBase where TComponent : Component
- {
- [SerializeField]
- protected TComponent _component;
-
- [SerializeField]
- protected bool _dynamicFrom;
-
- [SerializeField]
- protected TFromProperty _from;
-
- [SerializeField]
- protected TToProperty _to;
- }
- }
|