27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class GreasePencilModifierInfluenceData {
|
|
public int flag;
|
|
public char[] _pad1 = new System.Char[4];
|
|
public char[] layer_name = new System.Char[64];
|
|
public Material ptr_material;
|
|
public int layer_pass;
|
|
public int material_pass;
|
|
public char[] vertex_group_name = new System.Char[64];
|
|
public CurveMapping ptr_custom_curve;
|
|
public object ptr__pad2;
|
|
public GreasePencilModifierInfluenceData(int flag, char[] _pad1, char[] layer_name, Material ptr_material, int layer_pass, int material_pass, char[] vertex_group_name, CurveMapping ptr_custom_curve, object ptr__pad2) {
|
|
this.flag = flag;
|
|
this._pad1 = _pad1;
|
|
this.layer_name = layer_name;
|
|
this.ptr_material = ptr_material;
|
|
this.layer_pass = layer_pass;
|
|
this.material_pass = material_pass;
|
|
this.vertex_group_name = vertex_group_name;
|
|
this.ptr_custom_curve = ptr_custom_curve;
|
|
this.ptr__pad2 = ptr__pad2;
|
|
}
|
|
}
|
|
}
|