Files
BlenderSharp/BlendFile/DNA/GpencilModifierData.cs
2025-02-19 17:07:50 +01:00

60 lines
2.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;
[DNAClassAttribute(275, "GpencilModifierData")]
public class GpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "*next", "GpencilModifierData", 4, true)]
public GpencilModifierData ptr_next;
[DNAFieldAttribute(1, "GpencilModifierData", "*prev", "GpencilModifierData", 4, true)]
public GpencilModifierData ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false)]
public int type;
[DNAFieldAttribute(3, "int", "mode", "int", 4, false)]
public int mode;
[DNAFieldAttribute(4, "char", "_pad0[4]", "System.Char[]", 4, false)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(5, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(6, "short", "ui_expand_flag", "short", 2, false)]
public short ui_expand_flag;
[DNAFieldAttribute(7, "char", "name[64]", "System.Char[]", 64, false)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(8, "char", "*error", "char", 4, true)]
public char ptr_error;
public GpencilModifierData() {
this.ptr_next = default;
this.ptr_prev = default;
this.type = default;
this.mode = default;
this._pad0 = default;
this.flag = default;
this.ui_expand_flag = default;
this.name = default;
this.ptr_error = default;
}
public GpencilModifierData(GpencilModifierData ptr_next, GpencilModifierData ptr_prev, int type, int mode, char[] _pad0, short flag, short ui_expand_flag, char[] name, char ptr_error) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.type = type;
this.mode = mode;
this._pad0 = _pad0;
this.flag = flag;
this.ui_expand_flag = ui_expand_flag;
this.name = name;
this.ptr_error = ptr_error;
}
}
}