Files
BlenderSharp/BlendFile/DNA/GreasePencilWeightAngleModifierData.cs

60 lines
2.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 System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(540, "GreasePencilWeightAngleModifierData", 376)]
public class GreasePencilWeightAngleModifierData {
[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", "min_weight", "float", 4, false, 292)]
public float min_weight;
[DNAFieldAttribute(4, "short", "axis", "short", 2, false, 296)]
public short axis;
[DNAFieldAttribute(5, "short", "space", "short", 2, false, 298)]
public short space;
[DNAFieldAttribute(6, "float", "angle", "float", 4, false, 300)]
public float angle;
[DNAFieldAttribute(7, "char", "target_vgname[64]", "System.Char[]", 64, false, 304)]
public char[] target_vgname = new System.Char[64];
[DNAFieldAttribute(8, "void", "*_pad", "void", 8, true, 368)]
public object ptr__pad;
public GreasePencilWeightAngleModifierData() {
this.modifier = default;
this.influence = default;
this.flag = default;
this.min_weight = default;
this.axis = default;
this.space = default;
this.angle = default;
this.target_vgname = default;
this.ptr__pad = default;
}
public GreasePencilWeightAngleModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float min_weight, short axis, short space, float angle, char[] target_vgname, object ptr__pad) {
this.modifier = modifier;
this.influence = influence;
this.flag = flag;
this.min_weight = min_weight;
this.axis = axis;
this.space = space;
this.angle = angle;
this.target_vgname = target_vgname;
this.ptr__pad = ptr__pad;
}
}
}