Files
FlaxEngine/Source/Engine/Graphics/Model.cs
2024-02-26 19:00:48 +01:00

23 lines
592 B
C#

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
namespace FlaxEngine
{
partial class Model
{
/// <summary>
/// The maximum amount of levels of detail for the model.
/// </summary>
public const int MaxLODs = 6;
/// <summary>
/// The maximum amount of meshes per model LOD.
/// </summary>
public const int MaxMeshes = 4096;
/// <summary>
/// The maximum allowed amount of material slots per model resource
/// </summary>
public const int MaxMaterialSlots = 4096;
}
}