Files
BlenderSharp/BlendFile/DNA/GreasePencilSimplifyModifierData.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

49 lines
1.9 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(552, "GreasePencilSimplifyModifierData")]
public struct GreasePencilSimplifyModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", 168)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(2, "short", "mode", 2)]
public short mode;
[DNAFieldAttribute(3, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(4, "short", "step", 2)]
public short step;
[DNAFieldAttribute(5, "float", "factor", 4)]
public float factor;
[DNAFieldAttribute(6, "float", "length", 4)]
public float length;
[DNAFieldAttribute(7, "float", "sharp_threshold", 4)]
public float sharp_threshold;
[DNAFieldAttribute(8, "float", "distance", 4)]
public float distance;
public GreasePencilSimplifyModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, short mode, char[] _pad, short step, float factor, float length, float sharp_threshold, float distance) {
this.modifier = modifier;
this.influence = influence;
this.mode = mode;
this._pad = _pad;
this.step = step;
this.factor = factor;
this.length = length;
this.sharp_threshold = sharp_threshold;
this.distance = distance;
}
}
}