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,65 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class LengthGpencilModifierData {
public GpencilModifierData modifier;
public Material ptr_material;
public char[] layername = new System.Char[64];
public int pass_index;
public int flag;
public int layer_pass;
public float start_fac;
public float end_fac;
public float rand_start_fac;
public float rand_end_fac;
public float rand_offset;
public float overshoot_fac;
public int seed;
public int step;
public int mode;
public char[] _pad = new System.Char[4];
public float point_density;
public float segment_influence;
public float max_angle;
public LengthGpencilModifierData(
GpencilModifierData modifier,
Material ptr_material,
char[] layername,
int pass_index,
int flag,
int layer_pass,
float start_fac,
float end_fac,
float rand_start_fac,
float rand_end_fac,
float rand_offset,
float overshoot_fac,
int seed,
int step,
int mode,
char[] _pad,
float point_density,
float segment_influence,
float max_angle) {
this.modifier = modifier;
this.ptr_material = ptr_material;
this.layername = layername;
this.pass_index = pass_index;
this.flag = flag;
this.layer_pass = layer_pass;
this.start_fac = start_fac;
this.end_fac = end_fac;
this.rand_start_fac = rand_start_fac;
this.rand_end_fac = rand_end_fac;
this.rand_offset = rand_offset;
this.overshoot_fac = overshoot_fac;
this.seed = seed;
this.step = step;
this.mode = mode;
this._pad = _pad;
this.point_density = point_density;
this.segment_influence = segment_influence;
this.max_angle = max_angle;
}
}
}