Here are the examples of the csharp api System.Collections.Generic.List.Add(glTFMaterial) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
19
View Source File : GltfDeserializer.g.cs
License : MIT License
Project Creator : sotanmochi
License : MIT License
Project Creator : sotanmochi
public static List<UniGLTF.glTFMaterial> Deserialize_gltf_materials(ListTreeNode<JsonValue> parsed)
{
var value = new List<glTFMaterial>();
foreach(var x in parsed.ArrayItems())
{
value.Add(Deserialize_gltf_materials_LIST(x));
}
return value;
}
19
View Source File : GltfDeserializer.g.cs
License : MIT License
Project Creator : vrm-c
License : MIT License
Project Creator : vrm-c
public static List<UniGLTF.glTFMaterial> Deserialize_gltf_materials(JsonNode parsed)
{
var value = new List<glTFMaterial>();
foreach(var x in parsed.ArrayItems())
{
value.Add(Deserialize_gltf_materials_LIST(x));
}
return value;
}