50 lines
1.9 KiB
C#
50 lines
1.9 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class TimeGpencilModifierData {
|
|
public GpencilModifierData modifier;
|
|
public Material ptr_material;
|
|
public char[] layername = new System.Char[64];
|
|
public int layer_pass;
|
|
public int flag;
|
|
public int offset;
|
|
public float frame_scale;
|
|
public int mode;
|
|
public int sfra;
|
|
public int efra;
|
|
public char[] _pad = new System.Char[4];
|
|
public TimeGpencilModifierSegment ptr_segments;
|
|
public int segments_len;
|
|
public int segment_active_index;
|
|
public TimeGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, int layer_pass, int flag, int offset, float frame_scale, int mode, int sfra, int efra, char[] _pad, TimeGpencilModifierSegment ptr_segments, int segments_len, int segment_active_index) {
|
|
this.modifier = modifier;
|
|
this.ptr_material = ptr_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.ptr_segments = ptr_segments;
|
|
this.segments_len = segments_len;
|
|
this.segment_active_index = segment_active_index;
|
|
}
|
|
}
|
|
}
|