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 GreasePencilLayerTreeNode {
[DNAFieldAttribute(0, "GreasePencilLayerTreeNode", "*next", 40)]
public GreasePencilLayerTreeNode ptr_next;
[DNAFieldAttribute(1, "GreasePencilLayerTreeNode", "*prev", 40)]
public GreasePencilLayerTreeNode ptr_prev;
[DNAFieldAttribute(2, "GreasePencilLayerTreeGroup", "*parent", 72)]
public GreasePencilLayerTreeGroup ptr_parent;
[DNAFieldAttribute(3, "char", "*name", 1)]
public char ptr_name;
[DNAFieldAttribute(4, "int8_t", "type", 1)]
public sbyte type;
[DNAFieldAttribute(5, "uchar", "color[3]", 1)]
public byte[] color = new System.Byte[3];
[DNAFieldAttribute(6, "int", "flag", 4)]
public int flag;
public GreasePencilLayerTreeNode(GreasePencilLayerTreeNode ptr_next, GreasePencilLayerTreeNode ptr_prev, GreasePencilLayerTreeGroup ptr_parent, char ptr_name, sbyte type, byte[] color, int flag) {
this.ptr_next = ptr_next;