Files
BlenderSharp/BlendFile/DNA/NoiseGpencilModifierData.cs
2025-03-04 18:48:04 +01:00

119 lines
5.0 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(276, "NoiseGpencilModifierData", 360)]
public class NoiseGpencilModifierData {
[DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(8, "Material", 1, "*material", "Material", true, 104)]
public Material material;
[DNAFieldAttribute(64, "char", 2, "layername[64]", "System.Char[]", false, 112)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(64, "char", 3, "materialname[64]", "System.Char[]", false, 176)]
public char[] materialname = new System.Char[64];
[DNAFieldAttribute(64, "char", 4, "vgname[64]", "System.Char[]", false, 240)]
public char[] vgname = new System.Char[64];
[DNAFieldAttribute(4, "int", 5, "pass_index", "int", false, 304)]
public int pass_index;
[DNAFieldAttribute(4, "int", 6, "flag", "int", false, 308)]
public int flag;
[DNAFieldAttribute(4, "float", 7, "factor", "float", false, 312)]
public float factor;
[DNAFieldAttribute(4, "float", 8, "factor_strength", "float", false, 316)]
public float factor_strength;
[DNAFieldAttribute(4, "float", 9, "factor_thickness", "float", false, 320)]
public float factor_thickness;
[DNAFieldAttribute(4, "float", 10, "factor_uvs", "float", false, 324)]
public float factor_uvs;
[DNAFieldAttribute(4, "float", 11, "noise_scale", "float", false, 328)]
public float noise_scale;
[DNAFieldAttribute(4, "float", 12, "noise_offset", "float", false, 332)]
public float noise_offset;
[DNAFieldAttribute(2, "short", 13, "noise_mode", "short", false, 336)]
public short noise_mode;
[DNAFieldAttribute(2, "char", 14, "_pad[2]", "System.Char[]", false, 338)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(4, "int", 15, "step", "int", false, 340)]
public int step;
[DNAFieldAttribute(4, "int", 16, "layer_pass", "int", false, 344)]
public int layer_pass;
[DNAFieldAttribute(4, "int", 17, "seed", "int", false, 348)]
public int seed;
[DNAFieldAttribute(8, "CurveMapping", 18, "*curve_intensity", "CurveMapping", true, 352)]
public CurveMapping curve_intensity;
public NoiseGpencilModifierData() {
this.modifier = default;
this.material = default;
this.layername = default;
this.materialname = default;
this.vgname = default;
this.pass_index = default;
this.flag = default;
this.factor = default;
this.factor_strength = default;
this.factor_thickness = default;
this.factor_uvs = default;
this.noise_scale = default;
this.noise_offset = default;
this.noise_mode = default;
this._pad = default;
this.step = default;
this.layer_pass = default;
this.seed = default;
this.curve_intensity = default;
}
public NoiseGpencilModifierData(
GpencilModifierData modifier,
Material material,
char[] layername,
char[] materialname,
char[] vgname,
int pass_index,
int flag,
float factor,
float factor_strength,
float factor_thickness,
float factor_uvs,
float noise_scale,
float noise_offset,
short noise_mode,
char[] _pad,
int step,
int layer_pass,
int seed,
CurveMapping curve_intensity) {
this.modifier = modifier;
this.material = material;
this.layername = layername;
this.materialname = materialname;
this.vgname = vgname;
this.pass_index = pass_index;
this.flag = flag;
this.factor = factor;
this.factor_strength = factor_strength;
this.factor_thickness = factor_thickness;
this.factor_uvs = factor_uvs;
this.noise_scale = noise_scale;
this.noise_offset = noise_offset;
this.noise_mode = noise_mode;
this._pad = _pad;
this.step = step;
this.layer_pass = layer_pass;
this.seed = seed;
this.curve_intensity = curve_intensity;
}
}
}