【add】主入口初始化

This commit is contained in:
2025-11-03 11:25:01 +08:00
commit 87e659271b
1903 changed files with 220684 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
namespace EPOOutline
{
/// <summary>
/// The bounds mode that is going to be used for bounds calculation for renderers.
/// </summary>
public enum BoundsMode
{
/// <summary>
/// The bounds are going to be taken from the renderer itself.
/// </summary>
Default,
/// <summary>
/// The bounds are going to be taken from the renderer, but it will be recalculated each time.
/// </summary>
ForceRecalculate,
/// <summary>
/// The bounds are going to be set manually.
/// </summary>
Manual
}
}