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