System.Collections.Generic.List.Add(glTFPrimitives)

Here are the examples of the csharp api System.Collections.Generic.List.Add(glTFPrimitives) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 View Source File : GltfDeserializer.g.cs
License : MIT License
Project Creator : sotanmochi

public static List<UniGLTF.glTFPrimitives> Deserialize_gltf_meshes__primitives(ListTreeNode<JsonValue> parsed)
{
    var value = new List<glTFPrimitives>();
    foreach(var x in parsed.ArrayItems())
    {
        value.Add(Deserialize_gltf_meshes__primitives_LIST(x));
    }
	return value;
}

19 View Source File : GltfDeserializer.g.cs
License : MIT License
Project Creator : vrm-c

public static List<UniGLTF.glTFPrimitives> Deserialize_gltf_meshes__primitives(JsonNode parsed)
{
    var value = new List<glTFPrimitives>();
    foreach(var x in parsed.ArrayItems())
    {
        value.Add(Deserialize_gltf_meshes__primitives_LIST(x));
    }
	return value;
}