Files
BlenderSharp/BlendFile/DNA/TimeGpencilModifierData.cs
2025-03-11 19:12:04 +01:00

80 lines
3.5 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(280, "TimeGpencilModifierData", 224)]
public class TimeGpencilModifierData {
[DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)]
public GpencilModifierData modifier;
[DNAFieldAttribute(8, "Material", 1, "*material", "Material", true, 104)]
public Material material;
[DNAArrayAttribute(64, "char", 2, "layername[64]", "System.Char[]", 64, 112)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(4, "int", 3, "layer_pass", "int", false, 176)]
public int layer_pass;
[DNAFieldAttribute(4, "int", 4, "flag", "int", false, 180)]
public int flag;
[DNAFieldAttribute(4, "int", 5, "offset", "int", false, 184)]
public int offset;
[DNAFieldAttribute(4, "float", 6, "frame_scale", "float", false, 188)]
public float frame_scale;
[DNAFieldAttribute(4, "int", 7, "mode", "int", false, 192)]
public int mode;
[DNAFieldAttribute(4, "int", 8, "sfra", "int", false, 196)]
public int sfra;
[DNAFieldAttribute(4, "int", 9, "efra", "int", false, 200)]
public int efra;
[DNAArrayAttribute(4, "char", 10, "_pad[4]", "System.Char[]", 4, 204)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(8, "TimeGpencilModifierSegment", 11, "*segments", "TimeGpencilModifierSegment", true, 208)]
public TimeGpencilModifierSegment segments;
[DNAFieldAttribute(4, "int", 12, "segments_len", "int", false, 216)]
public int segments_len;
[DNAFieldAttribute(4, "int", 13, "segment_active_index", "int", false, 220)]
public int segment_active_index;
public TimeGpencilModifierData() {
this.modifier = default;
this.material = default;
this.layername = default;
this.layer_pass = default;
this.flag = default;
this.offset = default;
this.frame_scale = default;
this.mode = default;
this.sfra = default;
this.efra = default;
this._pad = default;
this.segments = default;
this.segments_len = default;
this.segment_active_index = default;
}
public TimeGpencilModifierData(GpencilModifierData modifier, Material material, char[] layername, int layer_pass, int flag, int offset, float frame_scale, int mode, int sfra, int efra, char[] _pad, TimeGpencilModifierSegment segments, int segments_len, int segment_active_index) {
this.modifier = modifier;
this.material = material;
this.layername = layername;
this.layer_pass = layer_pass;
this.flag = flag;
this.offset = offset;
this.frame_scale = frame_scale;
this.mode = mode;
this.sfra = sfra;
this.efra = efra;
this._pad = _pad;
this.segments = segments;
this.segments_len = segments_len;
this.segment_active_index = segment_active_index;
}
}
}