46 lines
1.8 KiB
C#
46 lines
1.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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class ColorGpencilModifierData {
|
|
public GpencilModifierData modifier;
|
|
public Material ptr_material;
|
|
public char[] layername = new System.Char[64];
|
|
public char[] materialname = new System.Char[64];
|
|
public int pass_index;
|
|
public int flag;
|
|
public float[] hsv = new System.Single[3];
|
|
public char modify_color;
|
|
public char[] _pad = new System.Char[3];
|
|
public int layer_pass;
|
|
public char[] _pad1 = new System.Char[4];
|
|
public CurveMapping ptr_curve_intensity;
|
|
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;
|
|
}
|
|
}
|
|
}
|