Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(255, "bGPDspoint", 80)]
public class bGPDspoint {
[DNAFieldAttribute(0, "float", "x", "float", 4, false)]
[DNAFieldAttribute(0, "float", "x", "float", 4, false, 0)]
public float x;
[DNAFieldAttribute(1, "float", "y", "float", 4, false)]
[DNAFieldAttribute(1, "float", "y", "float", 4, false, 4)]
public float y;
[DNAFieldAttribute(2, "float", "z", "float", 4, false)]
[DNAFieldAttribute(2, "float", "z", "float", 4, false, 8)]
public float z;
[DNAFieldAttribute(3, "float", "pressure", "float", 4, false)]
[DNAFieldAttribute(3, "float", "pressure", "float", 4, false, 12)]
public float pressure;
[DNAFieldAttribute(4, "float", "strength", "float", 4, false)]
[DNAFieldAttribute(4, "float", "strength", "float", 4, false, 16)]
public float strength;
[DNAFieldAttribute(5, "float", "time", "float", 4, false)]
[DNAFieldAttribute(5, "float", "time", "float", 4, false, 20)]
public float time;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(6, "int", "flag", "int", 4, false, 24)]
public int flag;
[DNAFieldAttribute(7, "float", "uv_fac", "float", 4, false)]
[DNAFieldAttribute(7, "float", "uv_fac", "float", 4, false, 28)]
public float uv_fac;
[DNAFieldAttribute(8, "float", "uv_rot", "float", 4, false)]
[DNAFieldAttribute(8, "float", "uv_rot", "float", 4, false, 32)]
public float uv_rot;
[DNAFieldAttribute(9, "float", "uv_fill[2]", "System.Single[]", 8, false)]
[DNAFieldAttribute(9, "float", "uv_fill[2]", "System.Single[]", 8, false, 36)]
public float[] uv_fill = new System.Single[2];
[DNAFieldAttribute(10, "float", "vert_color[4]", "System.Single[]", 16, false)]
[DNAFieldAttribute(10, "float", "vert_color[4]", "System.Single[]", 16, false, 44)]
public float[] vert_color = new System.Single[4];
[DNAFieldAttribute(11, "char", "_pad2[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(11, "char", "_pad2[4]", "System.Char[]", 4, false, 60)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(12, "bGPDspoint_Runtime", "runtime", "bGPDspoint_Runtime", 16, false)]
[DNAFieldAttribute(12, "bGPDspoint_Runtime", "runtime", "bGPDspoint_Runtime", 16, false, 64)]
public bGPDspoint_Runtime runtime;
public bGPDspoint() {
this.x = default;