暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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