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,45 +15,45 @@ namespace BlendFile.DNA {
[DNAClassAttribute(79, "FCurve", 120)]
public class FCurve {
[DNAFieldAttribute(0, "FCurve", "*next", "FCurve", 8, true)]
[DNAFieldAttribute(0, "FCurve", "*next", "FCurve", 8, true, 0)]
public FCurve ptr_next;
[DNAFieldAttribute(1, "FCurve", "*prev", "FCurve", 8, true)]
[DNAFieldAttribute(1, "FCurve", "*prev", "FCurve", 8, true, 8)]
public FCurve ptr_prev;
[DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 8, true)]
[DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 8, true, 16)]
public bActionGroup ptr_grp;
[DNAFieldAttribute(3, "ChannelDriver", "*driver", "ChannelDriver", 8, true)]
[DNAFieldAttribute(3, "ChannelDriver", "*driver", "ChannelDriver", 8, true, 24)]
public ChannelDriver ptr_driver;
[DNAFieldAttribute(4, "ListBase", "modifiers", "ListBase", 16, false)]
[DNAFieldAttribute(4, "ListBase", "modifiers", "ListBase", 16, false, 32)]
public ListBase modifiers;
[DNAFieldAttribute(5, "BezTriple", "*bezt", "BezTriple", 8, true)]
[DNAFieldAttribute(5, "BezTriple", "*bezt", "BezTriple", 8, true, 48)]
public BezTriple ptr_bezt;
[DNAFieldAttribute(6, "FPoint", "*fpt", "FPoint", 8, true)]
[DNAFieldAttribute(6, "FPoint", "*fpt", "FPoint", 8, true, 56)]
public FPoint ptr_fpt;
[DNAFieldAttribute(7, "int", "totvert", "int", 4, false)]
[DNAFieldAttribute(7, "int", "totvert", "int", 4, false, 64)]
public int totvert;
[DNAFieldAttribute(8, "int", "active_keyframe_index", "int", 4, false)]
[DNAFieldAttribute(8, "int", "active_keyframe_index", "int", 4, false, 68)]
public int active_keyframe_index;
[DNAFieldAttribute(9, "float", "curval", "float", 4, false)]
[DNAFieldAttribute(9, "float", "curval", "float", 4, false, 72)]
public float curval;
[DNAFieldAttribute(10, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(10, "short", "flag", "short", 2, false, 76)]
public short flag;
[DNAFieldAttribute(11, "short", "extend", "short", 2, false)]
[DNAFieldAttribute(11, "short", "extend", "short", 2, false, 78)]
public short extend;
[DNAFieldAttribute(12, "char", "auto_smoothing", "char", 1, false)]
[DNAFieldAttribute(12, "char", "auto_smoothing", "char", 1, false, 80)]
public char auto_smoothing;
[DNAFieldAttribute(13, "char", "_pad[3]", "System.Char[]", 3, false)]
[DNAFieldAttribute(13, "char", "_pad[3]", "System.Char[]", 3, false, 81)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(14, "int", "array_index", "int", 4, false)]
[DNAFieldAttribute(14, "int", "array_index", "int", 4, false, 84)]
public int array_index;
[DNAFieldAttribute(15, "char", "*rna_path", "char", 8, true)]
[DNAFieldAttribute(15, "char", "*rna_path", "char", 8, true, 88)]
public char ptr_rna_path;
[DNAFieldAttribute(16, "int", "color_mode", "int", 4, false)]
[DNAFieldAttribute(16, "int", "color_mode", "int", 4, false, 96)]
public int color_mode;
[DNAFieldAttribute(17, "float", "color[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(17, "float", "color[3]", "System.Single[]", 12, false, 100)]
public float[] color = new System.Single[3];
[DNAFieldAttribute(18, "float", "prev_norm_factor", "float", 4, false)]
[DNAFieldAttribute(18, "float", "prev_norm_factor", "float", 4, false, 112)]
public float prev_norm_factor;
[DNAFieldAttribute(19, "float", "prev_offset", "float", 4, false)]
[DNAFieldAttribute(19, "float", "prev_offset", "float", 4, false, 116)]
public float prev_offset;
public FCurve() {
this.ptr_next = default;