Bez popisu
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.

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