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,32 +15,32 @@ namespace BlendFile.DNA {
[DNAClassAttribute(265, "bGPDframe", 56)]
public class bGPDframe {
[DNAFieldAttribute(0, "bGPDframe", "*next", "bGPDframe", 8, true, 0)]
public bGPDframe ptr_next;
[DNAFieldAttribute(1, "bGPDframe", "*prev", "bGPDframe", 8, true, 8)]
public bGPDframe ptr_prev;
[DNAFieldAttribute(2, "ListBase", "strokes", "ListBase", 16, false, 16)]
[DNAFieldAttribute(8, "bGPDframe", 0, "*next", "bGPDframe", true, 0)]
public bGPDframe next;
[DNAFieldAttribute(8, "bGPDframe", 1, "*prev", "bGPDframe", true, 8)]
public bGPDframe prev;
[DNAFieldAttribute(16, "ListBase", 2, "strokes", "ListBase", false, 16)]
public ListBase strokes;
[DNAFieldAttribute(3, "int", "framenum", "int", 4, false, 32)]
[DNAFieldAttribute(4, "int", 3, "framenum", "int", false, 32)]
public int framenum;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 36)]
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 36)]
public short flag;
[DNAFieldAttribute(5, "short", "key_type", "short", 2, false, 38)]
[DNAFieldAttribute(2, "short", 5, "key_type", "short", false, 38)]
public short key_type;
[DNAFieldAttribute(6, "bGPDframe_Runtime", "runtime", "bGPDframe_Runtime", 16, false, 40)]
[DNAFieldAttribute(16, "bGPDframe_Runtime", 6, "runtime", "bGPDframe_Runtime", false, 40)]
public bGPDframe_Runtime runtime;
public bGPDframe() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.strokes = default;
this.framenum = default;
this.flag = default;
this.key_type = default;
this.runtime = default;
}
public bGPDframe(bGPDframe ptr_next, bGPDframe ptr_prev, ListBase strokes, int framenum, short flag, short key_type, bGPDframe_Runtime runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bGPDframe(bGPDframe next, bGPDframe prev, ListBase strokes, int framenum, short flag, short key_type, bGPDframe_Runtime runtime) {
this.next = next;
this.prev = prev;
this.strokes = strokes;
this.framenum = framenum;
this.flag = flag;