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,61 +15,61 @@ namespace BlendFile.DNA {
[DNAClassAttribute(216, "Curves", 808)]
public class Curves {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 8, true, 208)]
public AnimData ptr_adt;
[DNAFieldAttribute(2, "CurvesGeometry", "geometry", "CurvesGeometry", 544, false, 216)]
[DNAFieldAttribute(8, "AnimData", 1, "*adt", "AnimData", true, 208)]
public AnimData adt;
[DNAFieldAttribute(544, "CurvesGeometry", 2, "geometry", "CurvesGeometry", false, 216)]
public CurvesGeometry geometry;
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 760)]
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 760)]
public int flag;
[DNAFieldAttribute(4, "int", "attributes_active_index", "int", 4, false, 764)]
[DNAFieldAttribute(4, "int", 4, "attributes_active_index", "int", false, 764)]
public int attributes_active_index;
[DNAFieldAttribute(5, "Material", "**mat", "Material", 8, true, 768)]
public Material ptr_ptr_mat;
[DNAFieldAttribute(6, "short", "totcol", "short", 2, false, 776)]
[DNAFieldAttribute(8, "Material", 5, "**mat", "Material", true, 768)]
public Material mat;
[DNAFieldAttribute(2, "short", 6, "totcol", "short", false, 776)]
public short totcol;
[DNAFieldAttribute(7, "char", "symmetry", "char", 1, false, 778)]
[DNAFieldAttribute(1, "char", 7, "symmetry", "char", false, 778)]
public char symmetry;
[DNAFieldAttribute(8, "char", "selection_domain", "char", 1, false, 779)]
[DNAFieldAttribute(1, "char", 8, "selection_domain", "char", false, 779)]
public char selection_domain;
[DNAFieldAttribute(9, "char", "_pad[4]", "System.Char[]", 4, false, 780)]
[DNAFieldAttribute(4, "char", 9, "_pad[4]", "System.Char[]", false, 780)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(10, "Object", "*surface", "Object", 8, true, 784)]
public Object ptr_surface;
[DNAFieldAttribute(11, "char", "*surface_uv_map", "char", 8, true, 792)]
public char ptr_surface_uv_map;
[DNAFieldAttribute(12, "void", "*batch_cache", "void", 8, true, 800)]
public object ptr_batch_cache;
[DNAFieldAttribute(8, "Object", 10, "*surface", "Object", true, 784)]
public Object surface;
[DNAFieldAttribute(8, "char", 11, "*surface_uv_map", "char", true, 792)]
public char surface_uv_map;
[DNAFieldAttribute(8, "void", 12, "*batch_cache", "void", true, 800)]
public object batch_cache;
public Curves() {
this.id = default;
this.ptr_adt = default;
this.adt = default;
this.geometry = default;
this.flag = default;
this.attributes_active_index = default;
this.ptr_ptr_mat = default;
this.mat = default;
this.totcol = default;
this.symmetry = default;
this.selection_domain = default;
this._pad = default;
this.ptr_surface = default;
this.ptr_surface_uv_map = default;
this.ptr_batch_cache = default;
this.surface = default;
this.surface_uv_map = default;
this.batch_cache = default;
}
public Curves(ID id, AnimData ptr_adt, CurvesGeometry geometry, int flag, int attributes_active_index, Material ptr_ptr_mat, short totcol, char symmetry, char selection_domain, char[] _pad, Object ptr_surface, char ptr_surface_uv_map, object ptr_batch_cache) {
public Curves(ID id, AnimData adt, CurvesGeometry geometry, int flag, int attributes_active_index, Material mat, short totcol, char symmetry, char selection_domain, char[] _pad, Object surface, char surface_uv_map, object batch_cache) {
this.id = id;
this.ptr_adt = ptr_adt;
this.adt = adt;
this.geometry = geometry;
this.flag = flag;
this.attributes_active_index = attributes_active_index;
this.ptr_ptr_mat = ptr_ptr_mat;
this.mat = mat;
this.totcol = totcol;
this.symmetry = symmetry;
this.selection_domain = selection_domain;
this._pad = _pad;
this.ptr_surface = ptr_surface;
this.ptr_surface_uv_map = ptr_surface_uv_map;
this.ptr_batch_cache = ptr_batch_cache;
this.surface = surface;
this.surface_uv_map = surface_uv_map;
this.batch_cache = batch_cache;
}
}
}