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,19 +11,32 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ClothModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Cloth", "*clothObject", 0)]
public Cloth ptr_clothObject;
[DNAFieldAttribute(2, "ClothSimSettings", "*sim_parms", 272)]
public ClothSimSettings ptr_sim_parms;
[DNAFieldAttribute(3, "ClothCollSettings", "*coll_parms", 72)]
public ClothCollSettings ptr_coll_parms;
[DNAFieldAttribute(4, "PointCache", "*point_cache", 1392)]
public PointCache ptr_point_cache;
[DNAFieldAttribute(5, "ListBase", "ptcaches", 16)]
public ListBase ptcaches;
[DNAFieldAttribute(6, "ClothHairData", "*hairdata", 0)]
public ClothHairData ptr_hairdata;
[DNAFieldAttribute(7, "float", "hair_grid_min[3]", 4)]
public float[] hair_grid_min = new System.Single[3];
[DNAFieldAttribute(8, "float", "hair_grid_max[3]", 4)]
public float[] hair_grid_max = new System.Single[3];
[DNAFieldAttribute(9, "int", "hair_grid_res[3]", 4)]
public int[] hair_grid_res = new System.Int32[3];
[DNAFieldAttribute(10, "float", "hair_grid_cellsize", 4)]
public float hair_grid_cellsize;
[DNAFieldAttribute(11, "ClothSolverResult", "*solver_result", 0)]
public ClothSolverResult ptr_solver_result;
public ClothModifierData(ModifierData modifier, Cloth ptr_clothObject, ClothSimSettings ptr_sim_parms, ClothCollSettings ptr_coll_parms, PointCache ptr_point_cache, ListBase ptcaches, ClothHairData ptr_hairdata, float[] hair_grid_min, float[] hair_grid_max, int[] hair_grid_res, float hair_grid_cellsize, ClothSolverResult ptr_solver_result) {
this.modifier = modifier;