Files
BlenderSharp/BlendFile/DNA/GreasePencilEnvelopeModifierData.cs

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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public struct GreasePencilEnvelopeModifierData {
public ModifierData modifier;
public GreasePencilModifierInfluenceData influence;
public int mode;
public int mat_nr;
public float thickness;
public float strength;
public int skip;
public int spread;
public GreasePencilEnvelopeModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int mode, int mat_nr, float thickness, float strength, int skip, int spread) {
this.modifier = modifier;
this.influence = influence;
this.mode = mode;
this.mat_nr = mat_nr;
this.thickness = thickness;
this.strength = strength;
this.skip = skip;
this.spread = spread;
}
}
}