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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(516, "NodesModifierBakeFile", 16)]
public class NodesModifierBakeFile {
[DNAFieldAttribute(0, "char", "*name", "char", 8, true, 0)]
public char ptr_name;
[DNAFieldAttribute(1, "PackedFile", "*packed_file", "PackedFile", 8, true, 8)]
public PackedFile ptr_packed_file;
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
public char name;
[DNAFieldAttribute(8, "PackedFile", 1, "*packed_file", "PackedFile", true, 8)]
public PackedFile packed_file;
public NodesModifierBakeFile() {
this.ptr_name = default;
this.ptr_packed_file = default;
this.name = default;
this.packed_file = default;
}
public NodesModifierBakeFile(char ptr_name, PackedFile ptr_packed_file) {
this.ptr_name = ptr_name;
this.ptr_packed_file = ptr_packed_file;
public NodesModifierBakeFile(char name, PackedFile packed_file) {
this.name = name;
this.packed_file = packed_file;
}
}
}