Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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