Geen omschrijving
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.

TrackAssetExamples.cs 371B

1234567891011121314151617
  1. using UnityEngine;
  2. using UnityEngine.Timeline;
  3. namespace DocCodeExamples
  4. {
  5. class TrackAssetExamples_HideAPI
  6. {
  7. #region declare-trackAssetExample
  8. [TrackColor(1, 0, 0)]
  9. [TrackBindingType(typeof(Animator))]
  10. [TrackClipType(typeof(AnimationClip))]
  11. public class CustomAnimationTrack : TrackAsset { }
  12. #endregion
  13. }
  14. }