您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

21 行
414 B

  1. using System;
  2. using UnityEngine;
  3. namespace Tweening
  4. {
  5. public abstract class TweenerTrack<TComponent, TFromProperty, TToProperty> : TweenerTrackBase where TComponent : Component
  6. {
  7. [SerializeField]
  8. protected TComponent _component;
  9. [SerializeField]
  10. protected bool _dynamicFrom;
  11. [SerializeField]
  12. protected TFromProperty _from;
  13. [SerializeField]
  14. protected TToProperty _to;
  15. }
  16. }