// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit
{
///
/// Defines how to generate points in a line renderer
///
public enum StepMode
{
///
/// Draw points based on LineStepCount
///
Interpolated = 0,
///
/// Draw only the points available in the source - use this for hard edges
///
FromSource,
}
}