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,20 +11,34 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bGPDspoint {
[DNAFieldAttribute(0, "float", "x", 4)]
public float x;
[DNAFieldAttribute(1, "float", "y", 4)]
public float y;
[DNAFieldAttribute(2, "float", "z", 4)]
public float z;
[DNAFieldAttribute(3, "float", "pressure", 4)]
public float pressure;
[DNAFieldAttribute(4, "float", "strength", 4)]
public float strength;
[DNAFieldAttribute(5, "float", "time", 4)]
public float time;
[DNAFieldAttribute(6, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(7, "float", "uv_fac", 4)]
public float uv_fac;
[DNAFieldAttribute(8, "float", "uv_rot", 4)]
public float uv_rot;
[DNAFieldAttribute(9, "float", "uv_fill[2]", 4)]
public float[] uv_fill = new System.Single[2];
[DNAFieldAttribute(10, "float", "vert_color[4]", 4)]
public float[] vert_color = new System.Single[4];
[DNAFieldAttribute(11, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(12, "bGPDspoint_Runtime", "runtime", 16)]
public bGPDspoint_Runtime runtime;
public bGPDspoint(float x, float y, float z, float pressure, float strength, float time, int flag, float uv_fac, float uv_rot, float[] uv_fill, float[] vert_color, char[] _pad2, bGPDspoint_Runtime runtime) {
this.x = x;