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,43 +11,80 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bGPDlayer {
[DNAFieldAttribute(0, "bGPDlayer", "*next", 680)]
public bGPDlayer ptr_next;
[DNAFieldAttribute(1, "bGPDlayer", "*prev", 680)]
public bGPDlayer ptr_prev;
[DNAFieldAttribute(2, "ListBase", "frames", 16)]
public ListBase frames;
[DNAFieldAttribute(3, "bGPDframe", "*actframe", 56)]
public bGPDframe ptr_actframe;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "short", "onion_flag", 2)]
public short onion_flag;
[DNAFieldAttribute(6, "float", "color[4]", 4)]
public float[] color = new System.Single[4];
[DNAFieldAttribute(7, "float", "fill[4]", 4)]
public float[] fill = new System.Single[4];
[DNAFieldAttribute(8, "char", "info[128]", 1)]
public char[] info = new System.Char[128];
[DNAFieldAttribute(9, "short", "thickness", 2)]
public short thickness;
[DNAFieldAttribute(10, "short", "pass_index", 2)]
public short pass_index;
[DNAFieldAttribute(11, "Object", "*parent", 1160)]
public Object ptr_parent;
[DNAFieldAttribute(12, "float", "inverse[4][4]", 4)]
public float[,] inverse = new System.Single[4,4];
[DNAFieldAttribute(13, "char", "parsubstr[64]", 1)]
public char[] parsubstr = new System.Char[64];
[DNAFieldAttribute(14, "short", "partype", 2)]
public short partype;
[DNAFieldAttribute(15, "short", "line_change", 2)]
public short line_change;
[DNAFieldAttribute(16, "float", "tintcolor[4]", 4)]
public float[] tintcolor = new System.Single[4];
[DNAFieldAttribute(17, "float", "opacity", 4)]
public float opacity;
[DNAFieldAttribute(18, "char", "viewlayername[64]", 1)]
public char[] viewlayername = new System.Char[64];
[DNAFieldAttribute(19, "int", "blend_mode", 4)]
public int blend_mode;
[DNAFieldAttribute(20, "float", "vertex_paint_opacity", 4)]
public float vertex_paint_opacity;
[DNAFieldAttribute(21, "short", "gstep", 2)]
public short gstep;
[DNAFieldAttribute(22, "short", "gstep_next", 2)]
public short gstep_next;
[DNAFieldAttribute(23, "float", "gcolor_prev[3]", 4)]
public float[] gcolor_prev = new System.Single[3];
[DNAFieldAttribute(24, "float", "gcolor_next[3]", 4)]
public float[] gcolor_next = new System.Single[3];
[DNAFieldAttribute(25, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(26, "ListBase", "mask_layers", 16)]
public ListBase mask_layers;
[DNAFieldAttribute(27, "int", "act_mask", 4)]
public int act_mask;
[DNAFieldAttribute(28, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(29, "float", "location[3]", 4)]
public float[] location = new System.Single[3];
[DNAFieldAttribute(30, "float", "rotation[3]", 4)]
public float[] rotation = new System.Single[3];
[DNAFieldAttribute(31, "float", "scale[3]", 4)]
public float[] scale = new System.Single[3];
[DNAFieldAttribute(32, "float", "layer_mat[4][4]", 4)]
public float[,] layer_mat = new System.Single[4,4];
[DNAFieldAttribute(33, "float", "layer_invmat[4][4]", 4)]
public float[,] layer_invmat = new System.Single[4,4];
[DNAFieldAttribute(34, "char", "_pad3[4]", 1)]
public char[] _pad3 = new System.Char[4];
[DNAFieldAttribute(35, "bGPDlayer_Runtime", "runtime", 16)]
public bGPDlayer_Runtime runtime;
public bGPDlayer(
bGPDlayer ptr_next,