119 lines
4.8 KiB
C#
119 lines
4.8 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(288, "LengthGpencilModifierData")]
|
|
public class LengthGpencilModifierData {
|
|
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false)]
|
|
public GpencilModifierData modifier;
|
|
[DNAFieldAttribute(1, "Material", "*material", "Material", 4, true)]
|
|
public Material ptr_material;
|
|
[DNAFieldAttribute(2, "char", "layername[64]", "System.Char[]", 64, false)]
|
|
public char[] layername = new System.Char[64];
|
|
[DNAFieldAttribute(3, "int", "pass_index", "int", 4, false)]
|
|
public int pass_index;
|
|
[DNAFieldAttribute(4, "int", "flag", "int", 4, false)]
|
|
public int flag;
|
|
[DNAFieldAttribute(5, "int", "layer_pass", "int", 4, false)]
|
|
public int layer_pass;
|
|
[DNAFieldAttribute(6, "float", "start_fac", "float", 4, false)]
|
|
public float start_fac;
|
|
[DNAFieldAttribute(7, "float", "end_fac", "float", 4, false)]
|
|
public float end_fac;
|
|
[DNAFieldAttribute(8, "float", "rand_start_fac", "float", 4, false)]
|
|
public float rand_start_fac;
|
|
[DNAFieldAttribute(9, "float", "rand_end_fac", "float", 4, false)]
|
|
public float rand_end_fac;
|
|
[DNAFieldAttribute(10, "float", "rand_offset", "float", 4, false)]
|
|
public float rand_offset;
|
|
[DNAFieldAttribute(11, "float", "overshoot_fac", "float", 4, false)]
|
|
public float overshoot_fac;
|
|
[DNAFieldAttribute(12, "int", "seed", "int", 4, false)]
|
|
public int seed;
|
|
[DNAFieldAttribute(13, "int", "step", "int", 4, false)]
|
|
public int step;
|
|
[DNAFieldAttribute(14, "int", "mode", "int", 4, false)]
|
|
public int mode;
|
|
[DNAFieldAttribute(15, "char", "_pad[4]", "System.Char[]", 4, false)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(16, "float", "point_density", "float", 4, false)]
|
|
public float point_density;
|
|
[DNAFieldAttribute(17, "float", "segment_influence", "float", 4, false)]
|
|
public float segment_influence;
|
|
[DNAFieldAttribute(18, "float", "max_angle", "float", 4, false)]
|
|
public float max_angle;
|
|
public LengthGpencilModifierData() {
|
|
this.modifier = default;
|
|
this.ptr_material = default;
|
|
this.layername = default;
|
|
this.pass_index = default;
|
|
this.flag = default;
|
|
this.layer_pass = default;
|
|
this.start_fac = default;
|
|
this.end_fac = default;
|
|
this.rand_start_fac = default;
|
|
this.rand_end_fac = default;
|
|
this.rand_offset = default;
|
|
this.overshoot_fac = default;
|
|
this.seed = default;
|
|
this.step = default;
|
|
this.mode = default;
|
|
this._pad = default;
|
|
this.point_density = default;
|
|
this.segment_influence = default;
|
|
this.max_angle = default;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|