暂无描述
您最多选择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. }