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(826, "MeshStatVis", 40)]
public struct MeshStatVis {
[DNAFieldAttribute(0, "char", "type", "char", 1, false)]
[DNAFieldAttribute(0, "char", "type", "char", 1, false, 0)]
public char type;
[DNAFieldAttribute(1, "char", "_pad1[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(1, "char", "_pad1[2]", "System.Char[]", 2, false, 1)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(2, "char", "overhang_axis", "char", 1, false)]
[DNAFieldAttribute(2, "char", "overhang_axis", "char", 1, false, 3)]
public char overhang_axis;
[DNAFieldAttribute(3, "float", "overhang_min", "float", 4, false)]
[DNAFieldAttribute(3, "float", "overhang_min", "float", 4, false, 4)]
public float overhang_min;
[DNAFieldAttribute(4, "float", "overhang_max", "float", 4, false)]
[DNAFieldAttribute(4, "float", "overhang_max", "float", 4, false, 8)]
public float overhang_max;
[DNAFieldAttribute(5, "float", "thickness_min", "float", 4, false)]
[DNAFieldAttribute(5, "float", "thickness_min", "float", 4, false, 12)]
public float thickness_min;
[DNAFieldAttribute(6, "float", "thickness_max", "float", 4, false)]
[DNAFieldAttribute(6, "float", "thickness_max", "float", 4, false, 16)]
public float thickness_max;
[DNAFieldAttribute(7, "char", "thickness_samples", "char", 1, false)]
[DNAFieldAttribute(7, "char", "thickness_samples", "char", 1, false, 20)]
public char thickness_samples;
[DNAFieldAttribute(8, "char", "_pad2[3]", "System.Char[]", 3, false)]
[DNAFieldAttribute(8, "char", "_pad2[3]", "System.Char[]", 3, false, 21)]
public char[] _pad2 = new System.Char[3];
[DNAFieldAttribute(9, "float", "distort_min", "float", 4, false)]
[DNAFieldAttribute(9, "float", "distort_min", "float", 4, false, 24)]
public float distort_min;
[DNAFieldAttribute(10, "float", "distort_max", "float", 4, false)]
[DNAFieldAttribute(10, "float", "distort_max", "float", 4, false, 28)]
public float distort_max;
[DNAFieldAttribute(11, "float", "sharp_min", "float", 4, false)]
[DNAFieldAttribute(11, "float", "sharp_min", "float", 4, false, 32)]
public float sharp_min;
[DNAFieldAttribute(12, "float", "sharp_max", "float", 4, false)]
[DNAFieldAttribute(12, "float", "sharp_max", "float", 4, false, 36)]
public float sharp_max;
public MeshStatVis() {
this.type = default;