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,35 +15,35 @@ namespace BlendFile.DNA {
[DNAClassAttribute(444, "ModifierData", 120)]
public class ModifierData {
[DNAFieldAttribute(0, "ModifierData", "*next", "ModifierData", 8, true, 0)]
public ModifierData ptr_next;
[DNAFieldAttribute(1, "ModifierData", "*prev", "ModifierData", 8, true, 8)]
public ModifierData ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
[DNAFieldAttribute(8, "ModifierData", 0, "*next", "ModifierData", true, 0)]
public ModifierData next;
[DNAFieldAttribute(8, "ModifierData", 1, "*prev", "ModifierData", true, 8)]
public ModifierData prev;
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 16)]
public int type;
[DNAFieldAttribute(3, "int", "mode", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 3, "mode", "int", false, 20)]
public int mode;
[DNAFieldAttribute(4, "float", "execution_time", "float", 4, false, 24)]
[DNAFieldAttribute(4, "float", 4, "execution_time", "float", false, 24)]
public float execution_time;
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 28)]
[DNAFieldAttribute(2, "short", 5, "flag", "short", false, 28)]
public short flag;
[DNAFieldAttribute(6, "short", "ui_expand_flag", "short", 2, false, 30)]
[DNAFieldAttribute(2, "short", 6, "ui_expand_flag", "short", false, 30)]
public short ui_expand_flag;
[DNAFieldAttribute(7, "ushort", "layout_panel_open_flag", "ushort", 2, false, 32)]
[DNAFieldAttribute(2, "ushort", 7, "layout_panel_open_flag", "ushort", false, 32)]
public ushort layout_panel_open_flag;
[DNAFieldAttribute(8, "char", "_pad[2]", "System.Char[]", 2, false, 34)]
[DNAFieldAttribute(2, "char", 8, "_pad[2]", "System.Char[]", false, 34)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(9, "int", "persistent_uid", "int", 4, false, 36)]
[DNAFieldAttribute(4, "int", 9, "persistent_uid", "int", false, 36)]
public int persistent_uid;
[DNAFieldAttribute(10, "char", "name[64]", "System.Char[]", 64, false, 40)]
[DNAFieldAttribute(64, "char", 10, "name[64]", "System.Char[]", false, 40)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(11, "char", "*error", "char", 8, true, 104)]
public char ptr_error;
[DNAFieldAttribute(12, "void", "*runtime", "void", 8, true, 112)]
public object ptr_runtime;
[DNAFieldAttribute(8, "char", 11, "*error", "char", true, 104)]
public char error;
[DNAFieldAttribute(8, "void", 12, "*runtime", "void", true, 112)]
public object runtime;
public ModifierData() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.mode = default;
this.execution_time = default;
@@ -53,12 +53,12 @@ namespace BlendFile.DNA {
this._pad = default;
this.persistent_uid = default;
this.name = default;
this.ptr_error = default;
this.ptr_runtime = default;
this.error = default;
this.runtime = default;
}
public ModifierData(ModifierData ptr_next, ModifierData ptr_prev, int type, int mode, float execution_time, short flag, short ui_expand_flag, ushort layout_panel_open_flag, char[] _pad, int persistent_uid, char[] name, char ptr_error, object ptr_runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public ModifierData(ModifierData next, ModifierData prev, int type, int mode, float execution_time, short flag, short ui_expand_flag, ushort layout_panel_open_flag, char[] _pad, int persistent_uid, char[] name, char error, object runtime) {
this.next = next;
this.prev = prev;
this.type = type;
this.mode = mode;
this.execution_time = execution_time;
@@ -68,8 +68,8 @@ namespace BlendFile.DNA {
this._pad = _pad;
this.persistent_uid = persistent_uid;
this.name = name;
this.ptr_error = ptr_error;
this.ptr_runtime = ptr_runtime;
this.error = error;
this.runtime = runtime;
}
}
}