Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,20 +11,34 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bMotionPath {
[DNAFieldAttribute(0, "bMotionPathVert", "*points", 16)]
public bMotionPathVert ptr_points;
[DNAFieldAttribute(1, "int", "length", 4)]
public int length;
[DNAFieldAttribute(2, "int", "start_frame", 4)]
public int start_frame;
[DNAFieldAttribute(3, "int", "end_frame", 4)]
public int end_frame;
[DNAFieldAttribute(4, "float", "color[3]", 4)]
public float[] color = new System.Single[3];
[DNAFieldAttribute(5, "float", "color_post[3]", 4)]
public float[] color_post = new System.Single[3];
[DNAFieldAttribute(6, "int", "line_thickness", 4)]
public int line_thickness;
[DNAFieldAttribute(7, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(8, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(9, "GPUVertBufHandle", "*points_vbo", 0)]
public GPUVertBufHandle ptr_points_vbo;
[DNAFieldAttribute(10, "GPUBatchHandle", "*batch_line", 0)]
public GPUBatchHandle ptr_batch_line;
[DNAFieldAttribute(11, "GPUBatchHandle", "*batch_points", 0)]
public GPUBatchHandle ptr_batch_points;
[DNAFieldAttribute(12, "void", "*_pad", 0)]
public object ptr__pad;
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;