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,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(213, "CurveProfile", 72)]
public class CurveProfile {
[DNAFieldAttribute(0, "short", "path_len", "short", 2, false)]
[DNAFieldAttribute(0, "short", "path_len", "short", 2, false, 0)]
public short path_len;
[DNAFieldAttribute(1, "short", "segments_len", "short", 2, false)]
[DNAFieldAttribute(1, "short", "segments_len", "short", 2, false, 2)]
public short segments_len;
[DNAFieldAttribute(2, "int", "preset", "int", 4, false)]
[DNAFieldAttribute(2, "int", "preset", "int", 4, false, 4)]
public int preset;
[DNAFieldAttribute(3, "CurveProfilePoint", "*path", "CurveProfilePoint", 8, true)]
[DNAFieldAttribute(3, "CurveProfilePoint", "*path", "CurveProfilePoint", 8, true, 8)]
public CurveProfilePoint ptr_path;
[DNAFieldAttribute(4, "CurveProfilePoint", "*table", "CurveProfilePoint", 8, true)]
[DNAFieldAttribute(4, "CurveProfilePoint", "*table", "CurveProfilePoint", 8, true, 16)]
public CurveProfilePoint ptr_table;
[DNAFieldAttribute(5, "CurveProfilePoint", "*segments", "CurveProfilePoint", 8, true)]
[DNAFieldAttribute(5, "CurveProfilePoint", "*segments", "CurveProfilePoint", 8, true, 24)]
public CurveProfilePoint ptr_segments;
[DNAFieldAttribute(6, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(6, "int", "flag", "int", 4, false, 32)]
public int flag;
[DNAFieldAttribute(7, "int", "changed_timestamp", "int", 4, false)]
[DNAFieldAttribute(7, "int", "changed_timestamp", "int", 4, false, 36)]
public int changed_timestamp;
[DNAFieldAttribute(8, "rctf", "view_rect", "rctf", 16, false)]
[DNAFieldAttribute(8, "rctf", "view_rect", "rctf", 16, false, 40)]
public rctf view_rect;
[DNAFieldAttribute(9, "rctf", "clip_rect", "rctf", 16, false)]
[DNAFieldAttribute(9, "rctf", "clip_rect", "rctf", 16, false, 56)]
public rctf clip_rect;
public CurveProfile() {
this.path_len = default;