Files
BlenderSharp/BlendFile/DNA/ColorGpencilModifierData.cs

72 lines
3.3 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(281, "ColorGpencilModifierData", 280)]
public class ColorGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "Material", "*material", "Material", 8, true, 104)]
public Material ptr_material;
[DNAFieldAttribute(2, "char", "layername[64]", "System.Char[]", 64, false, 112)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(3, "char", "materialname[64]", "System.Char[]", 64, false, 176)]
public char[] materialname = new System.Char[64];
[DNAFieldAttribute(4, "int", "pass_index", "int", 4, false, 240)]
public int pass_index;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 244)]
public int flag;
[DNAFieldAttribute(6, "float", "hsv[3]", "System.Single[]", 12, false, 248)]
public float[] hsv = new System.Single[3];
[DNAFieldAttribute(7, "char", "modify_color", "char", 1, false, 260)]
public char modify_color;
[DNAFieldAttribute(8, "char", "_pad[3]", "System.Char[]", 3, false, 261)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(9, "int", "layer_pass", "int", 4, false, 264)]
public int layer_pass;
[DNAFieldAttribute(10, "char", "_pad1[4]", "System.Char[]", 4, false, 268)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(11, "CurveMapping", "*curve_intensity", "CurveMapping", 8, true, 272)]
public CurveMapping ptr_curve_intensity;
public ColorGpencilModifierData() {
this.modifier = default;
this.ptr_material = default;
this.layername = default;
this.materialname = default;
this.pass_index = default;
this.flag = default;
this.hsv = default;
this.modify_color = default;
this._pad = default;
this.layer_pass = default;
this._pad1 = default;
this.ptr_curve_intensity = default;
}
public ColorGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, char[] materialname, int pass_index, int flag, float[] hsv, char modify_color, char[] _pad, int layer_pass, char[] _pad1, CurveMapping ptr_curve_intensity) {
this.modifier = modifier;
this.ptr_material = ptr_material;
this.layername = layername;
this.materialname = materialname;
this.pass_index = pass_index;
this.flag = flag;
this.hsv = hsv;
this.modify_color = modify_color;
this._pad = _pad;
this.layer_pass = layer_pass;
this._pad1 = _pad1;
this.ptr_curve_intensity = ptr_curve_intensity;
}
}
}