您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
604 B

namespace VrmLib
{
/// <summary>
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/glTFid.schema.json
///
/// ImportとExportでなるべく順番を維持するべく導入。下記のベースクラスとした
///
/// * Image, Texture, Material
/// * Animation
/// * Node, Skin, Mesh
///
/// </summary>
public class GltfId
{
public int? GltfIndex;
/// <summary>
/// 未指定は後ろに送る
/// </summary>
public int SortOrder => GltfIndex.GetValueOrDefault(int.MaxValue);
}
}