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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(464, "ClothModifierData", 224)]
public class ClothModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Cloth", "*clothObject", "Cloth", 8, true)]
[DNAFieldAttribute(1, "Cloth", "*clothObject", "Cloth", 8, true, 120)]
public Cloth ptr_clothObject;
[DNAFieldAttribute(2, "ClothSimSettings", "*sim_parms", "ClothSimSettings", 8, true)]
[DNAFieldAttribute(2, "ClothSimSettings", "*sim_parms", "ClothSimSettings", 8, true, 128)]
public ClothSimSettings ptr_sim_parms;
[DNAFieldAttribute(3, "ClothCollSettings", "*coll_parms", "ClothCollSettings", 8, true)]
[DNAFieldAttribute(3, "ClothCollSettings", "*coll_parms", "ClothCollSettings", 8, true, 136)]
public ClothCollSettings ptr_coll_parms;
[DNAFieldAttribute(4, "PointCache", "*point_cache", "PointCache", 8, true)]
[DNAFieldAttribute(4, "PointCache", "*point_cache", "PointCache", 8, true, 144)]
public PointCache ptr_point_cache;
[DNAFieldAttribute(5, "ListBase", "ptcaches", "ListBase", 16, false)]
[DNAFieldAttribute(5, "ListBase", "ptcaches", "ListBase", 16, false, 152)]
public ListBase ptcaches;
[DNAFieldAttribute(6, "ClothHairData", "*hairdata", "ClothHairData", 8, true)]
[DNAFieldAttribute(6, "ClothHairData", "*hairdata", "ClothHairData", 8, true, 168)]
public ClothHairData ptr_hairdata;
[DNAFieldAttribute(7, "float", "hair_grid_min[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(7, "float", "hair_grid_min[3]", "System.Single[]", 12, false, 176)]
public float[] hair_grid_min = new System.Single[3];
[DNAFieldAttribute(8, "float", "hair_grid_max[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(8, "float", "hair_grid_max[3]", "System.Single[]", 12, false, 188)]
public float[] hair_grid_max = new System.Single[3];
[DNAFieldAttribute(9, "int", "hair_grid_res[3]", "System.Int32[]", 12, false)]
[DNAFieldAttribute(9, "int", "hair_grid_res[3]", "System.Int32[]", 12, false, 200)]
public int[] hair_grid_res = new System.Int32[3];
[DNAFieldAttribute(10, "float", "hair_grid_cellsize", "float", 4, false)]
[DNAFieldAttribute(10, "float", "hair_grid_cellsize", "float", 4, false, 212)]
public float hair_grid_cellsize;
[DNAFieldAttribute(11, "ClothSolverResult", "*solver_result", "ClothSolverResult", 8, true)]
[DNAFieldAttribute(11, "ClothSolverResult", "*solver_result", "ClothSolverResult", 8, true, 216)]
public ClothSolverResult ptr_solver_result;
public ClothModifierData() {
this.modifier = default;