Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

TweenBehaviour.cs 404B

123456789101112131415161718
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.Playables;
  4. namespace Timeline.Samples
  5. {
  6. // Runtime representation of a Tween clip.
  7. public class TweenBehaviour : PlayableBehaviour
  8. {
  9. public Transform startLocation;
  10. public Transform endLocation;
  11. public bool shouldTweenPosition;
  12. public bool shouldTweenRotation;
  13. public AnimationCurve curve;
  14. }
  15. }