Files
BlenderSharp/BlendFile/DNA/NodeCryptomatte_Runtime.cs
2025-01-22 20:24:55 +01:00

30 lines
974 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeCryptomatte_Runtime {
[DNAFieldAttribute(0, "ListBase", "layers", 16)]
public ListBase layers;
[DNAFieldAttribute(1, "float", "add[3]", 4)]
public float[] add = new System.Single[3];
[DNAFieldAttribute(2, "float", "remove[3]", 4)]
public float[] remove = new System.Single[3];
public NodeCryptomatte_Runtime(ListBase layers, float[] add, float[] remove) {
this.layers = layers;
this.add = add;
this.remove = remove;
}
}
}