Files
FlaxEngine/Source/Editor/GUI/Timeline/TrackCreateOptions.cs
2021-01-02 14:28:49 +01:00

29 lines
587 B
C#

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