Files
BlenderSharp/BlendFile/DNA/GreasePencilWeightAngleModifierData.cs
2025-01-22 17:40:14 +01:00

39 lines
1.4 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;
namespace BlendFile.DNA {
public class GreasePencilWeightAngleModifierData {
public ModifierData modifier;
public GreasePencilModifierInfluenceData influence;
public int flag;
public float min_weight;
public short axis;
public short space;
public float angle;
public char[] target_vgname = new System.Char[64];
public object ptr__pad;
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;
}
}
}