38 lines
1.3 KiB
C#
38 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 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;
|
|
}
|
|
}
|
|
}
|