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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(108, "BoneCollectionMember", 24)]
public class BoneCollectionMember {
[DNAFieldAttribute(0, "BoneCollectionMember", "*next", "BoneCollectionMember", 8, true, 0)]
public BoneCollectionMember ptr_next;
[DNAFieldAttribute(1, "BoneCollectionMember", "*prev", "BoneCollectionMember", 8, true, 8)]
public BoneCollectionMember ptr_prev;
[DNAFieldAttribute(2, "Bone", "*bone", "Bone", 8, true, 16)]
public Bone ptr_bone;
[DNAFieldAttribute(8, "BoneCollectionMember", 0, "*next", "BoneCollectionMember", true, 0)]
public BoneCollectionMember next;
[DNAFieldAttribute(8, "BoneCollectionMember", 1, "*prev", "BoneCollectionMember", true, 8)]
public BoneCollectionMember prev;
[DNAFieldAttribute(8, "Bone", 2, "*bone", "Bone", true, 16)]
public Bone bone;
public BoneCollectionMember() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_bone = default;
this.next = default;
this.prev = default;
this.bone = default;
}
public BoneCollectionMember(BoneCollectionMember ptr_next, BoneCollectionMember ptr_prev, Bone ptr_bone) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_bone = ptr_bone;
public BoneCollectionMember(BoneCollectionMember next, BoneCollectionMember prev, Bone bone) {
this.next = next;
this.prev = prev;
this.bone = bone;
}
}
}