23 lines
592 B
C#
23 lines
592 B
C#
// Copyright (c) 2012-2020 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;
|
|
}
|
|
}
|