52 lines
2.1 KiB
C#
52 lines
2.1 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 {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(534, "GreasePencilThickModifierData", 312)]
|
|
public class GreasePencilThickModifierData {
|
|
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(168, "GreasePencilModifierInfluenceData", 1, "influence", "GreasePencilModifierInfluenceData", false, 120)]
|
|
public GreasePencilModifierInfluenceData influence;
|
|
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 288)]
|
|
public int flag;
|
|
[DNAFieldAttribute(4, "float", 3, "thickness_fac", "float", false, 292)]
|
|
public float thickness_fac;
|
|
[DNAFieldAttribute(4, "float", 4, "thickness", "float", false, 296)]
|
|
public float thickness;
|
|
[DNAFieldAttribute(4, "char", 5, "_pad[4]", "System.Char[]", false, 300)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(8, "void", 6, "*_pad1", "void", true, 304)]
|
|
public object _pad1;
|
|
public GreasePencilThickModifierData() {
|
|
this.modifier = default;
|
|
this.influence = default;
|
|
this.flag = default;
|
|
this.thickness_fac = default;
|
|
this.thickness = default;
|
|
this._pad = default;
|
|
this._pad1 = default;
|
|
}
|
|
public GreasePencilThickModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float thickness_fac, float thickness, char[] _pad, object _pad1) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.flag = flag;
|
|
this.thickness_fac = thickness_fac;
|
|
this.thickness = thickness;
|
|
this._pad = _pad;
|
|
this._pad1 = _pad1;
|
|
}
|
|
}
|
|
}
|