Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

21 rinda
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. }