27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class GreasePencilWeightAngleModifierData {
|
|
public ModifierData modifier;
|
|
public GreasePencilModifierInfluenceData influence;
|
|
public int flag;
|
|
public float min_weight;
|
|
public short axis;
|
|
public short space;
|
|
public float angle;
|
|
public char[] target_vgname = new System.Char[64];
|
|
public object ptr__pad;
|
|
public GreasePencilWeightAngleModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float min_weight, short axis, short space, float angle, char[] target_vgname, object ptr__pad) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.flag = flag;
|
|
this.min_weight = min_weight;
|
|
this.axis = axis;
|
|
this.space = space;
|
|
this.angle = angle;
|
|
this.target_vgname = target_vgname;
|
|
this.ptr__pad = ptr__pad;
|
|
}
|
|
}
|
|
}
|