Files
BlenderSharp/BlendFile/DNA/GreasePencilEnvelopeModifierData.cs
2025-01-22 20:24:55 +01:00

45 lines
1.7 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;
public struct GreasePencilEnvelopeModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", 168)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(2, "int", "mode", 4)]
public int mode;
[DNAFieldAttribute(3, "int", "mat_nr", 4)]
public int mat_nr;
[DNAFieldAttribute(4, "float", "thickness", 4)]
public float thickness;
[DNAFieldAttribute(5, "float", "strength", 4)]
public float strength;
[DNAFieldAttribute(6, "int", "skip", 4)]
public int skip;
[DNAFieldAttribute(7, "int", "spread", 4)]
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;
}
}
}