36 lines
1.3 KiB
C#
36 lines
1.3 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class GreasePencilOutlineModifierData {
|
|
public ModifierData modifier;
|
|
public GreasePencilModifierInfluenceData influence;
|
|
public Object ptr_object;
|
|
public int flag;
|
|
public int thickness;
|
|
public float sample_length;
|
|
public int subdiv;
|
|
public Material ptr_outline_material;
|
|
public GreasePencilOutlineModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_object, int flag, int thickness, float sample_length, int subdiv, Material ptr_outline_material) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.ptr_object = ptr_object;
|
|
this.flag = flag;
|
|
this.thickness = thickness;
|
|
this.sample_length = sample_length;
|
|
this.subdiv = subdiv;
|
|
this.ptr_outline_material = ptr_outline_material;
|
|
}
|
|
}
|
|
}
|