Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class TintGpencilModifierData {
public GpencilModifierData modifier;
public Object ptr_object;
public Material ptr_material;
public char[] layername = new System.Char[64];
public char[] materialname = new System.Char[64];
public char[] vgname = new System.Char[64];
public int pass_index;
public int layer_pass;
public int flag;
public int mode;
public float factor;
public float radius;
public float[] rgb = new System.Single[3];
public int type;
public CurveMapping ptr_curve_intensity;
public ColorBand ptr_colorband;
public TintGpencilModifierData(
GpencilModifierData modifier,
Object ptr_object,
Material ptr_material,
char[] layername,
char[] materialname,
char[] vgname,
int pass_index,
int layer_pass,
int flag,
int mode,
float factor,
float radius,
float[] rgb,
int type,
CurveMapping ptr_curve_intensity,
ColorBand ptr_colorband) {
this.modifier = modifier;
this.ptr_object = ptr_object;
this.ptr_material = ptr_material;
this.layername = layername;
this.materialname = materialname;
this.vgname = vgname;
this.pass_index = pass_index;
this.layer_pass = layer_pass;
this.flag = flag;
this.mode = mode;
this.factor = factor;
this.radius = radius;
this.rgb = rgb;
this.type = type;
this.ptr_curve_intensity = ptr_curve_intensity;
this.ptr_colorband = ptr_colorband;
}
}
}