Files
art_test_main/Assets/Plugins/Easy performant outline/Scripts/OutlineRenderingStrategy.cs
2025-11-03 11:25:01 +08:00

17 lines
486 B
C#

namespace EPOOutline
{
/// <summary>
/// Outline rendering strategy.
/// </summary>
public enum OutlineRenderingStrategy
{
/// <summary>
/// All outlines are rendered to the same buffer.
/// </summary>
Default,
/// <summary>
/// Each outlinable rendered and postprocessed separately. Allows to have overlapping outlinables but greatly increases the performance penalty.
/// </summary>
PerObject
}
}