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,24 +11,42 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class GreasePencilLayer {
[DNAFieldAttribute(0, "GreasePencilLayerTreeNode", "base", 40)]
public GreasePencilLayerTreeNode @base;
[DNAFieldAttribute(1, "GreasePencilLayerFramesMapStorage", "frames_storage", 24)]
public GreasePencilLayerFramesMapStorage frames_storage;
[DNAFieldAttribute(2, "int8_t", "blend_mode", 1)]
public sbyte blend_mode;
[DNAFieldAttribute(3, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(4, "float", "opacity", 4)]
public float opacity;
[DNAFieldAttribute(5, "ListBase", "masks", 16)]
public ListBase masks;
[DNAFieldAttribute(6, "int", "active_mask_index", 4)]
public int active_mask_index;
[DNAFieldAttribute(7, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(8, "Object", "*parent", 1160)]
public Object ptr_parent;
[DNAFieldAttribute(9, "char", "*parsubstr", 1)]
public char ptr_parsubstr;
[DNAFieldAttribute(10, "float", "parentinv[4][4]", 4)]
public float[,] parentinv = new System.Single[4,4];
[DNAFieldAttribute(11, "float", "translation[3]", 4)]
public float[] translation = new System.Single[3];
[DNAFieldAttribute(12, "float", "rotation[3]", 4)]
public float[] rotation = new System.Single[3];
[DNAFieldAttribute(13, "float", "scale[3]", 4)]
public float[] scale = new System.Single[3];
[DNAFieldAttribute(14, "char", "_pad3[4]", 1)]
public char[] _pad3 = new System.Char[4];
[DNAFieldAttribute(15, "char", "*viewlayername", 1)]
public char ptr_viewlayername;
[DNAFieldAttribute(16, "GreasePencilLayerRuntimeHandle", "*runtime", 0)]
public GreasePencilLayerRuntimeHandle ptr_runtime;
public GreasePencilLayer(
GreasePencilLayerTreeNode @base,