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,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct bAnimVizSettings {
[DNAFieldAttribute(0, "short", "recalc", 2)]
public short recalc;
[DNAFieldAttribute(1, "short", "path_type", 2)]
public short path_type;
[DNAFieldAttribute(2, "short", "path_step", 2)]
public short path_step;
[DNAFieldAttribute(3, "short", "path_range", 2)]
public short path_range;
[DNAFieldAttribute(4, "short", "path_viewflag", 2)]
public short path_viewflag;
[DNAFieldAttribute(5, "short", "path_bakeflag", 2)]
public short path_bakeflag;
[DNAFieldAttribute(6, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(7, "int", "path_sf", 4)]
public int path_sf;
[DNAFieldAttribute(8, "int", "path_ef", 4)]
public int path_ef;
[DNAFieldAttribute(9, "int", "path_bc", 4)]
public int path_bc;
[DNAFieldAttribute(10, "int", "path_ac", 4)]
public int path_ac;
public bAnimVizSettings(short recalc, short path_type, short path_step, short path_range, short path_viewflag, short path_bakeflag, char[] _pad, int path_sf, int path_ef, int path_bc, int path_ac) {
this.recalc = recalc;