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

@@ -15,39 +15,39 @@ namespace BlendFile.DNA {
[DNAClassAttribute(80, "FModifier", 128)]
public class FModifier {
[DNAFieldAttribute(0, "FModifier", "*next", "FModifier", 8, true, 0)]
public FModifier ptr_next;
[DNAFieldAttribute(1, "FModifier", "*prev", "FModifier", 8, true, 8)]
public FModifier ptr_prev;
[DNAFieldAttribute(2, "FCurve", "*curve", "FCurve", 8, true, 16)]
public FCurve ptr_curve;
[DNAFieldAttribute(3, "void", "*data", "void", 8, true, 24)]
public object ptr_data;
[DNAFieldAttribute(4, "char", "name[64]", "System.Char[]", 64, false, 32)]
[DNAFieldAttribute(8, "FModifier", 0, "*next", "FModifier", true, 0)]
public FModifier next;
[DNAFieldAttribute(8, "FModifier", 1, "*prev", "FModifier", true, 8)]
public FModifier prev;
[DNAFieldAttribute(8, "FCurve", 2, "*curve", "FCurve", true, 16)]
public FCurve curve;
[DNAFieldAttribute(8, "void", 3, "*data", "void", true, 24)]
public object data;
[DNAFieldAttribute(64, "char", 4, "name[64]", "System.Char[]", false, 32)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(5, "short", "type", "short", 2, false, 96)]
[DNAFieldAttribute(2, "short", 5, "type", "short", false, 96)]
public short type;
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 98)]
[DNAFieldAttribute(2, "short", 6, "flag", "short", false, 98)]
public short flag;
[DNAFieldAttribute(7, "short", "ui_expand_flag", "short", 2, false, 100)]
[DNAFieldAttribute(2, "short", 7, "ui_expand_flag", "short", false, 100)]
public short ui_expand_flag;
[DNAFieldAttribute(8, "char", "_pad[6]", "System.Char[]", 6, false, 102)]
[DNAFieldAttribute(6, "char", 8, "_pad[6]", "System.Char[]", false, 102)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(9, "float", "influence", "float", 4, false, 108)]
[DNAFieldAttribute(4, "float", 9, "influence", "float", false, 108)]
public float influence;
[DNAFieldAttribute(10, "float", "sfra", "float", 4, false, 112)]
[DNAFieldAttribute(4, "float", 10, "sfra", "float", false, 112)]
public float sfra;
[DNAFieldAttribute(11, "float", "efra", "float", 4, false, 116)]
[DNAFieldAttribute(4, "float", 11, "efra", "float", false, 116)]
public float efra;
[DNAFieldAttribute(12, "float", "blendin", "float", 4, false, 120)]
[DNAFieldAttribute(4, "float", 12, "blendin", "float", false, 120)]
public float blendin;
[DNAFieldAttribute(13, "float", "blendout", "float", 4, false, 124)]
[DNAFieldAttribute(4, "float", 13, "blendout", "float", false, 124)]
public float blendout;
public FModifier() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_curve = default;
this.ptr_data = default;
this.next = default;
this.prev = default;
this.curve = default;
this.data = default;
this.name = default;
this.type = default;
this.flag = default;
@@ -59,11 +59,11 @@ namespace BlendFile.DNA {
this.blendin = default;
this.blendout = default;
}
public FModifier(FModifier ptr_next, FModifier ptr_prev, FCurve ptr_curve, object ptr_data, char[] name, short type, short flag, short ui_expand_flag, char[] _pad, float influence, float sfra, float efra, float blendin, float blendout) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_curve = ptr_curve;
this.ptr_data = ptr_data;
public FModifier(FModifier next, FModifier prev, FCurve curve, object data, char[] name, short type, short flag, short ui_expand_flag, char[] _pad, float influence, float sfra, float efra, float blendin, float blendout) {
this.next = next;
this.prev = prev;
this.curve = curve;
this.data = data;
this.name = name;
this.type = type;
this.flag = flag;