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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct bGPDcurve_point {
[DNAFieldAttribute(0, "BezTriple", "bezt", 72)]
public BezTriple bezt;
[DNAFieldAttribute(1, "float", "pressure", 4)]
public float pressure;
[DNAFieldAttribute(2, "float", "strength", 4)]
public float strength;
[DNAFieldAttribute(3, "int", "point_index", 4)]
public int point_index;
[DNAFieldAttribute(4, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(5, "float", "uv_fac", 4)]
public float uv_fac;
[DNAFieldAttribute(6, "float", "uv_rot", 4)]
public float uv_rot;
[DNAFieldAttribute(7, "float", "uv_fill[2]", 4)]
public float[] uv_fill = new System.Single[2];
[DNAFieldAttribute(8, "float", "vert_color[4]", 4)]
public float[] vert_color = new System.Single[4];
[DNAFieldAttribute(9, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public bGPDcurve_point(BezTriple bezt, float pressure, float strength, int point_index, int flag, float uv_fac, float uv_rot, float[] uv_fill, float[] vert_color, char[] _pad) {
this.bezt = bezt;