46 lines
2.0 KiB
C#
46 lines
2.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class ClothModifierData {
|
|
public ModifierData modifier;
|
|
public Cloth ptr_clothObject;
|
|
public ClothSimSettings ptr_sim_parms;
|
|
public ClothCollSettings ptr_coll_parms;
|
|
public PointCache ptr_point_cache;
|
|
public ListBase ptcaches;
|
|
public ClothHairData ptr_hairdata;
|
|
public float[] hair_grid_min = new System.Single[3];
|
|
public float[] hair_grid_max = new System.Single[3];
|
|
public int[] hair_grid_res = new System.Int32[3];
|
|
public float hair_grid_cellsize;
|
|
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;
|
|
this.ptr_clothObject = ptr_clothObject;
|
|
this.ptr_sim_parms = ptr_sim_parms;
|
|
this.ptr_coll_parms = ptr_coll_parms;
|
|
this.ptr_point_cache = ptr_point_cache;
|
|
this.ptcaches = ptcaches;
|
|
this.ptr_hairdata = ptr_hairdata;
|
|
this.hair_grid_min = hair_grid_min;
|
|
this.hair_grid_max = hair_grid_max;
|
|
this.hair_grid_res = hair_grid_res;
|
|
this.hair_grid_cellsize = hair_grid_cellsize;
|
|
this.ptr_solver_result = ptr_solver_result;
|
|
}
|
|
}
|
|
}
|