68 lines
3.0 KiB
C#
68 lines
3.0 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(547, "GreasePencilTimeModifierData", 328)]
|
|
public class GreasePencilTimeModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", "GreasePencilModifierInfluenceData", 168, false)]
|
|
public GreasePencilModifierInfluenceData influence;
|
|
[DNAFieldAttribute(2, "int", "flag", "int", 4, false)]
|
|
public int flag;
|
|
[DNAFieldAttribute(3, "int", "offset", "int", 4, false)]
|
|
public int offset;
|
|
[DNAFieldAttribute(4, "float", "frame_scale", "float", 4, false)]
|
|
public float frame_scale;
|
|
[DNAFieldAttribute(5, "int", "mode", "int", 4, false)]
|
|
public int mode;
|
|
[DNAFieldAttribute(6, "int", "sfra", "int", 4, false)]
|
|
public int sfra;
|
|
[DNAFieldAttribute(7, "int", "efra", "int", 4, false)]
|
|
public int efra;
|
|
[DNAFieldAttribute(8, "GreasePencilTimeModifierSegment", "*segments_array", "GreasePencilTimeModifierSegment", 8, true)]
|
|
public GreasePencilTimeModifierSegment ptr_segments_array;
|
|
[DNAFieldAttribute(9, "int", "segments_num", "int", 4, false)]
|
|
public int segments_num;
|
|
[DNAFieldAttribute(10, "int", "segment_active_index", "int", 4, false)]
|
|
public int segment_active_index;
|
|
public GreasePencilTimeModifierData() {
|
|
this.modifier = default;
|
|
this.influence = default;
|
|
this.flag = default;
|
|
this.offset = default;
|
|
this.frame_scale = default;
|
|
this.mode = default;
|
|
this.sfra = default;
|
|
this.efra = default;
|
|
this.ptr_segments_array = default;
|
|
this.segments_num = default;
|
|
this.segment_active_index = default;
|
|
}
|
|
public GreasePencilTimeModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, int offset, float frame_scale, int mode, int sfra, int efra, GreasePencilTimeModifierSegment ptr_segments_array, int segments_num, int segment_active_index) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.flag = flag;
|
|
this.offset = offset;
|
|
this.frame_scale = frame_scale;
|
|
this.mode = mode;
|
|
this.sfra = sfra;
|
|
this.efra = efra;
|
|
this.ptr_segments_array = ptr_segments_array;
|
|
this.segments_num = segments_num;
|
|
this.segment_active_index = segment_active_index;
|
|
}
|
|
}
|
|
}
|