Files
BlenderSharp/BlendFile/DNA/TimeGpencilModifierSegment.cs
2025-03-04 18:48:04 +01:00

48 lines
1.8 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(279, "TimeGpencilModifierSegment", 88)]
public class TimeGpencilModifierSegment {
[DNAFieldAttribute(64, "char", 0, "name[64]", "System.Char[]", false, 0)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(8, "TimeGpencilModifierData", 1, "*gpmd", "TimeGpencilModifierData", true, 64)]
public TimeGpencilModifierData gpmd;
[DNAFieldAttribute(4, "int", 2, "seg_start", "int", false, 72)]
public int seg_start;
[DNAFieldAttribute(4, "int", 3, "seg_end", "int", false, 76)]
public int seg_end;
[DNAFieldAttribute(4, "int", 4, "seg_mode", "int", false, 80)]
public int seg_mode;
[DNAFieldAttribute(4, "int", 5, "seg_repeat", "int", false, 84)]
public int seg_repeat;
public TimeGpencilModifierSegment() {
this.name = default;
this.gpmd = default;
this.seg_start = default;
this.seg_end = default;
this.seg_mode = default;
this.seg_repeat = default;
}
public TimeGpencilModifierSegment(char[] name, TimeGpencilModifierData gpmd, int seg_start, int seg_end, int seg_mode, int seg_repeat) {
this.name = name;
this.gpmd = gpmd;
this.seg_start = seg_start;
this.seg_end = seg_end;
this.seg_mode = seg_mode;
this.seg_repeat = seg_repeat;
}
}
}