mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 21:14:19 -05:00
18 lines
411 B
C#
18 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UniJSON;
|
|
|
|
|
|
namespace UniGLTF
|
|
{
|
|
/// <summary>
|
|
/// https://github.com/KhronosGroup/glTF/issues/1036
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class glTFPrimitives_extras : ExtraBase<glTFPrimitives_extras>
|
|
{
|
|
[JsonSchema(Required = true, MinItems = 1)]
|
|
public List<string> targetNames = new List<string>();
|
|
}
|
|
}
|