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,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(518, "NodesModifierBake", 72)]
public class NodesModifierBake {
[DNAFieldAttribute(0, "int", "id", "int", 4, false, 0)]
[DNAFieldAttribute(4, "int", 0, "id", "int", false, 0)]
public int id;
[DNAFieldAttribute(1, "int", "flag", "int", 4, false, 4)]
[DNAFieldAttribute(4, "int", 1, "flag", "int", false, 4)]
public int flag;
[DNAFieldAttribute(2, "uchar", "bake_mode", "uchar", 1, false, 8)]
[DNAFieldAttribute(1, "uchar", 2, "bake_mode", "uchar", false, 8)]
public byte bake_mode;
[DNAFieldAttribute(3, "int8_t", "bake_target", "int8_t", 1, false, 9)]
[DNAFieldAttribute(1, "int8_t", 3, "bake_target", "int8_t", false, 9)]
public sbyte bake_target;
[DNAFieldAttribute(4, "char", "_pad[6]", "System.Char[]", 6, false, 10)]
[DNAFieldAttribute(6, "char", 4, "_pad[6]", "System.Char[]", false, 10)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(5, "char", "*directory", "char", 8, true, 16)]
public char ptr_directory;
[DNAFieldAttribute(6, "int", "frame_start", "int", 4, false, 24)]
[DNAFieldAttribute(8, "char", 5, "*directory", "char", true, 16)]
public char directory;
[DNAFieldAttribute(4, "int", 6, "frame_start", "int", false, 24)]
public int frame_start;
[DNAFieldAttribute(7, "int", "frame_end", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 7, "frame_end", "int", false, 28)]
public int frame_end;
[DNAFieldAttribute(8, "int", "data_blocks_num", "int", 4, false, 32)]
[DNAFieldAttribute(4, "int", 8, "data_blocks_num", "int", false, 32)]
public int data_blocks_num;
[DNAFieldAttribute(9, "int", "active_data_block", "int", 4, false, 36)]
[DNAFieldAttribute(4, "int", 9, "active_data_block", "int", false, 36)]
public int active_data_block;
[DNAFieldAttribute(10, "NodesModifierDataBlock", "*data_blocks", "NodesModifierDataBlock", 8, true, 40)]
public NodesModifierDataBlock ptr_data_blocks;
[DNAFieldAttribute(11, "NodesModifierPackedBake", "*packed", "NodesModifierPackedBake", 8, true, 48)]
public NodesModifierPackedBake ptr_packed;
[DNAFieldAttribute(12, "void", "*_pad2", "void", 8, true, 56)]
public object ptr__pad2;
[DNAFieldAttribute(13, "int64_t", "bake_size", "int64_t", 8, false, 64)]
[DNAFieldAttribute(8, "NodesModifierDataBlock", 10, "*data_blocks", "NodesModifierDataBlock", true, 40)]
public NodesModifierDataBlock data_blocks;
[DNAFieldAttribute(8, "NodesModifierPackedBake", 11, "*packed", "NodesModifierPackedBake", true, 48)]
public NodesModifierPackedBake packed;
[DNAFieldAttribute(8, "void", 12, "*_pad2", "void", true, 56)]
public object _pad2;
[DNAFieldAttribute(8, "int64_t", 13, "bake_size", "int64_t", false, 64)]
public long bake_size;
public NodesModifierBake() {
this.id = default;
@@ -49,30 +49,30 @@ namespace BlendFile.DNA {
this.bake_mode = default;
this.bake_target = default;
this._pad = default;
this.ptr_directory = default;
this.directory = default;
this.frame_start = default;
this.frame_end = default;
this.data_blocks_num = default;
this.active_data_block = default;
this.ptr_data_blocks = default;
this.ptr_packed = default;
this.ptr__pad2 = default;
this.data_blocks = default;
this.packed = default;
this._pad2 = default;
this.bake_size = default;
}
public NodesModifierBake(int id, int flag, byte bake_mode, sbyte bake_target, char[] _pad, char ptr_directory, int frame_start, int frame_end, int data_blocks_num, int active_data_block, NodesModifierDataBlock ptr_data_blocks, NodesModifierPackedBake ptr_packed, object ptr__pad2, long bake_size) {
public NodesModifierBake(int id, int flag, byte bake_mode, sbyte bake_target, char[] _pad, char directory, int frame_start, int frame_end, int data_blocks_num, int active_data_block, NodesModifierDataBlock data_blocks, NodesModifierPackedBake packed, object _pad2, long bake_size) {
this.id = id;
this.flag = flag;
this.bake_mode = bake_mode;
this.bake_target = bake_target;
this._pad = _pad;
this.ptr_directory = ptr_directory;
this.directory = directory;
this.frame_start = frame_start;
this.frame_end = frame_end;
this.data_blocks_num = data_blocks_num;
this.active_data_block = active_data_block;
this.ptr_data_blocks = ptr_data_blocks;
this.ptr_packed = ptr_packed;
this.ptr__pad2 = ptr__pad2;
this.data_blocks = data_blocks;
this.packed = packed;
this._pad2 = _pad2;
this.bake_size = bake_size;
}
}