44 lines
1.6 KiB
C#
44 lines
1.6 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 GreasePencilTintModifierData {
|
|
public ModifierData modifier;
|
|
public GreasePencilModifierInfluenceData influence;
|
|
public short flag;
|
|
public char color_mode;
|
|
public char tint_mode;
|
|
public float factor;
|
|
public float radius;
|
|
public float[] color = new System.Single[3];
|
|
public Object ptr_object;
|
|
public ColorBand ptr_color_ramp;
|
|
public object ptr__pad;
|
|
public GreasePencilTintModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, short flag, char color_mode, char tint_mode, float factor, float radius, float[] color, Object ptr_object, ColorBand ptr_color_ramp, object ptr__pad) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.flag = flag;
|
|
this.color_mode = color_mode;
|
|
this.tint_mode = tint_mode;
|
|
this.factor = factor;
|
|
this.radius = radius;
|
|
this.color = color;
|
|
this.ptr_object = ptr_object;
|
|
this.ptr_color_ramp = ptr_color_ramp;
|
|
this.ptr__pad = ptr__pad;
|
|
}
|
|
}
|
|
}
|