Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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