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