56 lines
2.2 KiB
C#
56 lines
2.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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(548, "GreasePencilEnvelopeModifierData", 312)]
|
|
public struct GreasePencilEnvelopeModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", "GreasePencilModifierInfluenceData", 168, false)]
|
|
public GreasePencilModifierInfluenceData influence;
|
|
[DNAFieldAttribute(2, "int", "mode", "int", 4, false)]
|
|
public int mode;
|
|
[DNAFieldAttribute(3, "int", "mat_nr", "int", 4, false)]
|
|
public int mat_nr;
|
|
[DNAFieldAttribute(4, "float", "thickness", "float", 4, false)]
|
|
public float thickness;
|
|
[DNAFieldAttribute(5, "float", "strength", "float", 4, false)]
|
|
public float strength;
|
|
[DNAFieldAttribute(6, "int", "skip", "int", 4, false)]
|
|
public int skip;
|
|
[DNAFieldAttribute(7, "int", "spread", "int", 4, false)]
|
|
public int spread;
|
|
public GreasePencilEnvelopeModifierData() {
|
|
this.modifier = default;
|
|
this.influence = default;
|
|
this.mode = default;
|
|
this.mat_nr = default;
|
|
this.thickness = default;
|
|
this.strength = default;
|
|
this.skip = default;
|
|
this.spread = default;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|