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

39 lines
1.4 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 class GreasePencilSubdivModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", 168)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(2, "int", "type", 4)]
public int type;
[DNAFieldAttribute(3, "int", "level", 4)]
public int level;
[DNAFieldAttribute(4, "char", "_pad[8]", 1)]
public char[] _pad = new System.Char[8];
[DNAFieldAttribute(5, "void", "*_pad1", 0)]
public object ptr__pad1;
public GreasePencilSubdivModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int type, int level, char[] _pad, object ptr__pad1) {
this.modifier = modifier;
this.influence = influence;
this.type = type;
this.level = level;
this._pad = _pad;
this.ptr__pad1 = ptr__pad1;
}
}
}