//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//************** Copyright (c) 2016-2019 Marko Pintera (marko.pintera@gmail.com). All rights reserved. *******************//
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using bs;
namespace bs.Editor
{
/** @addtogroup GUIEditor
* @{
*/
/// Controls which elements should a GUICurves object draw.
public enum CurveDrawOptions
{
/// Draws markers at specific time intervals.
DrawMarkers = 1,
/// Draws elements representing individual keyframes.
DrawKeyframes = 2,
/// Draws curves and the area between them. Only relevant if only two curves are provided for drawing.
DrawRange = 4
}
/** @} */
}