Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class NodeCryptomatte {
[DNAFieldAttribute(0, "ImageUser", "iuser", 40)]
public ImageUser iuser;
[DNAFieldAttribute(1, "ListBase", "entries", 16)]
public ListBase entries;
[DNAFieldAttribute(2, "char", "layer_name[64]", 1)]
public char[] layer_name = new System.Char[64];
[DNAFieldAttribute(3, "char", "*matte_id", 1)]
public char ptr_matte_id;
[DNAFieldAttribute(4, "int", "num_inputs", 4)]
public int num_inputs;
[DNAFieldAttribute(5, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(6, "NodeCryptomatte_Runtime", "runtime", 40)]
public NodeCryptomatte_Runtime runtime;
public NodeCryptomatte(ImageUser iuser, ListBase entries, char[] layer_name, char ptr_matte_id, int num_inputs, char[] _pad, NodeCryptomatte_Runtime runtime) {
this.iuser = iuser;