Files
BlenderSharp/BlendFile/DNA/GreasePencilSmoothModifierData.cs

36 lines
1.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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class GreasePencilSmoothModifierData {
public ModifierData modifier;
public GreasePencilModifierInfluenceData influence;
public int flag;
public float factor;
public int step;
public char[] _pad = new System.Char[4];
public object ptr__pad1;
public GreasePencilSmoothModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, float factor, int step, char[] _pad, object ptr__pad1) {
this.modifier = modifier;
this.influence = influence;
this.flag = flag;
this.factor = factor;
this.step = step;
this._pad = _pad;
this.ptr__pad1 = ptr__pad1;
}
}
}