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 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class OutlineGpencilModifierData {
|
|
public GpencilModifierData modifier;
|
|
public Object ptr_object;
|
|
public Material ptr_material;
|
|
public char[] layername = new System.Char[64];
|
|
public int pass_index;
|
|
public int flag;
|
|
public int thickness;
|
|
public float sample_length;
|
|
public int subdiv;
|
|
public int layer_pass;
|
|
public Material ptr_outline_material;
|
|
public OutlineGpencilModifierData(GpencilModifierData modifier, Object ptr_object, Material ptr_material, char[] layername, int pass_index, int flag, int thickness, float sample_length, int subdiv, int layer_pass, Material ptr_outline_material) {
|
|
this.modifier = modifier;
|
|
this.ptr_object = ptr_object;
|
|
this.ptr_material = ptr_material;
|
|
this.layername = layername;
|
|
this.pass_index = pass_index;
|
|
this.flag = flag;
|
|
this.thickness = thickness;
|
|
this.sample_length = sample_length;
|
|
this.subdiv = subdiv;
|
|
this.layer_pass = layer_pass;
|
|
this.ptr_outline_material = ptr_outline_material;
|
|
}
|
|
}
|
|
}
|