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

ICurvesOwner.cs 375B

123456789101112131415
  1. namespace UnityEngine.Timeline
  2. {
  3. interface ICurvesOwner
  4. {
  5. AnimationClip curves { get; }
  6. bool hasCurves { get; }
  7. double duration { get; }
  8. void CreateCurves(string curvesClipName);
  9. string defaultCurvesName { get; }
  10. Object asset { get; }
  11. Object assetOwner { get; }
  12. TrackAsset targetTrack { get; }
  13. }
  14. }