Files
BlenderSharp/BlendFile/DNA/DashGpencilModifierData.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

52 lines
2.2 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(290, "DashGpencilModifierData")]
public class DashGpencilModifierData {
[DNAFieldAttribute(0, "GpencilModifierData", "modifier", 104)]
public GpencilModifierData modifier;
[DNAFieldAttribute(1, "Material", "*material", 392)]
public Material ptr_material;
[DNAFieldAttribute(2, "char", "layername[64]", 1)]
public char[] layername = new System.Char[64];
[DNAFieldAttribute(3, "int", "pass_index", 4)]
public int pass_index;
[DNAFieldAttribute(4, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(5, "int", "layer_pass", 4)]
public int layer_pass;
[DNAFieldAttribute(6, "int", "dash_offset", 4)]
public int dash_offset;
[DNAFieldAttribute(7, "DashGpencilModifierSegment", "*segments", 96)]
public DashGpencilModifierSegment ptr_segments;
[DNAFieldAttribute(8, "int", "segments_len", 4)]
public int segments_len;
[DNAFieldAttribute(9, "int", "segment_active_index", 4)]
public int segment_active_index;
public DashGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, int pass_index, int flag, int layer_pass, int dash_offset, DashGpencilModifierSegment ptr_segments, int segments_len, int segment_active_index) {
this.modifier = modifier;
this.ptr_material = ptr_material;
this.layername = layername;
this.pass_index = pass_index;
this.flag = flag;
this.layer_pass = layer_pass;
this.dash_offset = dash_offset;
this.ptr_segments = ptr_segments;
this.segments_len = segments_len;
this.segment_active_index = segment_active_index;
}
}
}