13 lines
307 B
C#
13 lines
307 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
partial class SkinnedModel
|
|
{
|
|
/// <summary>
|
|
/// The maximum allowed amount of skeleton bones to be used with skinned model.
|
|
/// </summary>
|
|
public const int MaxBones = 256;
|
|
}
|
|
}
|