40 lines
1.5 KiB
C#
40 lines
1.5 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 GreasePencilModifierInfluenceData {
|
|
public int flag;
|
|
public char[] _pad1 = new System.Char[4];
|
|
public char[] layer_name = new System.Char[64];
|
|
public Material ptr_material;
|
|
public int layer_pass;
|
|
public int material_pass;
|
|
public char[] vertex_group_name = new System.Char[64];
|
|
public CurveMapping ptr_custom_curve;
|
|
public object ptr__pad2;
|
|
public GreasePencilModifierInfluenceData(int flag, char[] _pad1, char[] layer_name, Material ptr_material, int layer_pass, int material_pass, char[] vertex_group_name, CurveMapping ptr_custom_curve, object ptr__pad2) {
|
|
this.flag = flag;
|
|
this._pad1 = _pad1;
|
|
this.layer_name = layer_name;
|
|
this.ptr_material = ptr_material;
|
|
this.layer_pass = layer_pass;
|
|
this.material_pass = material_pass;
|
|
this.vertex_group_name = vertex_group_name;
|
|
this.ptr_custom_curve = ptr_custom_curve;
|
|
this.ptr__pad2 = ptr__pad2;
|
|
}
|
|
}
|
|
}
|