70 lines
2.4 KiB
C#
70 lines
2.4 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 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class TintGpencilModifierData {
|
|
public GpencilModifierData modifier;
|
|
public Object ptr_object;
|
|
public Material ptr_material;
|
|
public char[] layername = new System.Char[64];
|
|
public char[] materialname = new System.Char[64];
|
|
public char[] vgname = new System.Char[64];
|
|
public int pass_index;
|
|
public int layer_pass;
|
|
public int flag;
|
|
public int mode;
|
|
public float factor;
|
|
public float radius;
|
|
public float[] rgb = new System.Single[3];
|
|
public int type;
|
|
public CurveMapping ptr_curve_intensity;
|
|
public ColorBand ptr_colorband;
|
|
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;
|
|
}
|
|
}
|
|
}
|