Files
BlenderSharp/BlendFile/DNA/TintGpencilModifierData.cs
2025-02-19 18:48:50 +01:00

104 lines
4.2 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(298, "TintGpencilModifierData", 368)]
public class TintGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "Object", "*object", "Object", 8, true)]
public Object ptr_object;
[DNAFieldAttribute(2, "Material", "*material", "Material", 8, true)]
public Material ptr_material;
[DNAFieldAttribute(3, "char", "layername[64]", "System.Char[]", 64, false)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(4, "char", "materialname[64]", "System.Char[]", 64, false)]
public char[] materialname = new System.Char[64];
[DNAFieldAttribute(5, "char", "vgname[64]", "System.Char[]", 64, false)]
public char[] vgname = new System.Char[64];
[DNAFieldAttribute(6, "int", "pass_index", "int", 4, false)]
public int pass_index;
[DNAFieldAttribute(7, "int", "layer_pass", "int", 4, false)]
public int layer_pass;
[DNAFieldAttribute(8, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(9, "int", "mode", "int", 4, false)]
public int mode;
[DNAFieldAttribute(10, "float", "factor", "float", 4, false)]
public float factor;
[DNAFieldAttribute(11, "float", "radius", "float", 4, false)]
public float radius;
[DNAFieldAttribute(12, "float", "rgb[3]", "System.Single[]", 12, false)]
public float[] rgb = new System.Single[3];
[DNAFieldAttribute(13, "int", "type", "int", 4, false)]
public int type;
[DNAFieldAttribute(14, "CurveMapping", "*curve_intensity", "CurveMapping", 8, true)]
public CurveMapping ptr_curve_intensity;
[DNAFieldAttribute(15, "ColorBand", "*colorband", "ColorBand", 8, true)]
public ColorBand ptr_colorband;
public TintGpencilModifierData() {
this.modifier = default;
this.ptr_object = default;
this.ptr_material = default;
this.layername = default;
this.materialname = default;
this.vgname = default;
this.pass_index = default;
this.layer_pass = default;
this.flag = default;
this.mode = default;
this.factor = default;
this.radius = default;
this.rgb = default;
this.type = default;
this.ptr_curve_intensity = default;
this.ptr_colorband = default;
}
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;
}
}
}