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,34 +15,34 @@ namespace BlendFile.DNA {
[DNAClassAttribute(44, "bMotionPath", 88)]
public class bMotionPath {
[DNAFieldAttribute(0, "bMotionPathVert", "*points", "bMotionPathVert", 8, true, 0)]
public bMotionPathVert ptr_points;
[DNAFieldAttribute(1, "int", "length", "int", 4, false, 8)]
[DNAFieldAttribute(8, "bMotionPathVert", 0, "*points", "bMotionPathVert", true, 0)]
public bMotionPathVert points;
[DNAFieldAttribute(4, "int", 1, "length", "int", false, 8)]
public int length;
[DNAFieldAttribute(2, "int", "start_frame", "int", 4, false, 12)]
[DNAFieldAttribute(4, "int", 2, "start_frame", "int", false, 12)]
public int start_frame;
[DNAFieldAttribute(3, "int", "end_frame", "int", 4, false, 16)]
[DNAFieldAttribute(4, "int", 3, "end_frame", "int", false, 16)]
public int end_frame;
[DNAFieldAttribute(4, "float", "color[3]", "System.Single[]", 12, false, 20)]
[DNAFieldAttribute(12, "float", 4, "color[3]", "System.Single[]", false, 20)]
public float[] color = new System.Single[3];
[DNAFieldAttribute(5, "float", "color_post[3]", "System.Single[]", 12, false, 32)]
[DNAFieldAttribute(12, "float", 5, "color_post[3]", "System.Single[]", false, 32)]
public float[] color_post = new System.Single[3];
[DNAFieldAttribute(6, "int", "line_thickness", "int", 4, false, 44)]
[DNAFieldAttribute(4, "int", 6, "line_thickness", "int", false, 44)]
public int line_thickness;
[DNAFieldAttribute(7, "int", "flag", "int", 4, false, 48)]
[DNAFieldAttribute(4, "int", 7, "flag", "int", false, 48)]
public int flag;
[DNAFieldAttribute(8, "char", "_pad2[4]", "System.Char[]", 4, false, 52)]
[DNAFieldAttribute(4, "char", 8, "_pad2[4]", "System.Char[]", false, 52)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(9, "GPUVertBufHandle", "*points_vbo", "GPUVertBufHandle", 8, true, 56)]
public GPUVertBufHandle ptr_points_vbo;
[DNAFieldAttribute(10, "GPUBatchHandle", "*batch_line", "GPUBatchHandle", 8, true, 64)]
public GPUBatchHandle ptr_batch_line;
[DNAFieldAttribute(11, "GPUBatchHandle", "*batch_points", "GPUBatchHandle", 8, true, 72)]
public GPUBatchHandle ptr_batch_points;
[DNAFieldAttribute(12, "void", "*_pad", "void", 8, true, 80)]
public object ptr__pad;
[DNAFieldAttribute(8, "GPUVertBufHandle", 9, "*points_vbo", "GPUVertBufHandle", true, 56)]
public GPUVertBufHandle points_vbo;
[DNAFieldAttribute(8, "GPUBatchHandle", 10, "*batch_line", "GPUBatchHandle", true, 64)]
public GPUBatchHandle batch_line;
[DNAFieldAttribute(8, "GPUBatchHandle", 11, "*batch_points", "GPUBatchHandle", true, 72)]
public GPUBatchHandle batch_points;
[DNAFieldAttribute(8, "void", 12, "*_pad", "void", true, 80)]
public object _pad;
public bMotionPath() {
this.ptr_points = default;
this.points = default;
this.length = default;
this.start_frame = default;
this.end_frame = default;
@@ -51,13 +51,13 @@ namespace BlendFile.DNA {
this.line_thickness = default;
this.flag = default;
this._pad2 = default;
this.ptr_points_vbo = default;
this.ptr_batch_line = default;
this.ptr_batch_points = default;
this.ptr__pad = default;
this.points_vbo = default;
this.batch_line = default;
this.batch_points = default;
this._pad = default;
}
public bMotionPath(bMotionPathVert ptr_points, int length, int start_frame, int end_frame, float[] color, float[] color_post, int line_thickness, int flag, char[] _pad2, GPUVertBufHandle ptr_points_vbo, GPUBatchHandle ptr_batch_line, GPUBatchHandle ptr_batch_points, object ptr__pad) {
this.ptr_points = ptr_points;
public bMotionPath(bMotionPathVert points, int length, int start_frame, int end_frame, float[] color, float[] color_post, int line_thickness, int flag, char[] _pad2, GPUVertBufHandle points_vbo, GPUBatchHandle batch_line, GPUBatchHandle batch_points, object _pad) {
this.points = points;
this.length = length;
this.start_frame = start_frame;
this.end_frame = end_frame;
@@ -66,10 +66,10 @@ namespace BlendFile.DNA {
this.line_thickness = line_thickness;
this.flag = flag;
this._pad2 = _pad2;
this.ptr_points_vbo = ptr_points_vbo;
this.ptr_batch_line = ptr_batch_line;
this.ptr_batch_points = ptr_batch_points;
this.ptr__pad = ptr__pad;
this.points_vbo = points_vbo;
this.batch_line = batch_line;
this.batch_points = batch_points;
this._pad = _pad;
}
}
}