Add example Unity Project

This commit is contained in:
Michał Gdula 2023-04-26 01:55:33 +01:00
parent fda7ff28dd
commit e3acdb9d6b
7122 changed files with 505543 additions and 2 deletions

View file

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using UnityEngine.Playables;
namespace UnityEngine.Timeline
{
/// <summary>
/// A group track is a container that allows tracks to be arranged in a hierarchical manner.
/// </summary>
[Serializable]
[TrackClipType(typeof(TrackAsset))]
[SupportsChildTracks]
public class GroupTrack : TrackAsset
{
internal override bool CanCompileClips()
{
return false;
}
/// <inheritdoc />
public override IEnumerable<PlayableBinding> outputs
{
get { return PlayableBinding.None; }
}
}
}