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,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(536, "GreasePencilDashModifierSegment", 88)]
public struct GreasePencilDashModifierSegment {
[DNAFieldAttribute(0, "char", "name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(0, "char", "name[64]", "System.Char[]", 64, false, 0)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(1, "int", "dash", "int", 4, false)]
[DNAFieldAttribute(1, "int", "dash", "int", 4, false, 64)]
public int dash;
[DNAFieldAttribute(2, "int", "gap", "int", 4, false)]
[DNAFieldAttribute(2, "int", "gap", "int", 4, false, 68)]
public int gap;
[DNAFieldAttribute(3, "float", "radius", "float", 4, false)]
[DNAFieldAttribute(3, "float", "radius", "float", 4, false, 72)]
public float radius;
[DNAFieldAttribute(4, "float", "opacity", "float", 4, false)]
[DNAFieldAttribute(4, "float", "opacity", "float", 4, false, 76)]
public float opacity;
[DNAFieldAttribute(5, "int", "mat_nr", "int", 4, false)]
[DNAFieldAttribute(5, "int", "mat_nr", "int", 4, false, 80)]
public int mat_nr;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(6, "int", "flag", "int", 4, false, 84)]
public int flag;
public GreasePencilDashModifierSegment() {
this.name = default;