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(102, "IdAdtTemplate", 216)]
public class IdAdtTemplate {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 8, true, 208)]
public AnimData ptr_adt;
[DNAFieldAttribute(8, "AnimData", 1, "*adt", "AnimData", true, 208)]
public AnimData adt;
public IdAdtTemplate() {
this.id = default;
this.ptr_adt = default;
this.adt = default;
}
public IdAdtTemplate(ID id, AnimData ptr_adt) {
public IdAdtTemplate(ID id, AnimData adt) {
this.id = id;
this.ptr_adt = ptr_adt;
this.adt = adt;
}
}
}