// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.GUI.Timeline { /// /// Track creation options. /// [HideInEditor] public struct TrackCreateOptions { /// /// The track archetype. /// public TrackArchetype Archetype; /// /// Create muted track. /// public bool Mute; /// /// Create looped track. /// public bool Loop; } }