//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(299, "TextureGpencilModifierData")] public class TextureGpencilModifierData { [DNAFieldAttribute(0, "GpencilModifierData", "modifier", "GpencilModifierData", 104, false)] public GpencilModifierData modifier; [DNAFieldAttribute(1, "Material", "*material", "Material", 4, true)] public Material ptr_material; [DNAFieldAttribute(2, "char", "layername[64]", "System.Char[]", 64, false)] public char[] layername = new System.Char[64]; [DNAFieldAttribute(3, "char", "materialname[64]", "System.Char[]", 64, false)] public char[] materialname = new System.Char[64]; [DNAFieldAttribute(4, "char", "vgname[64]", "System.Char[]", 64, false)] public char[] vgname = new System.Char[64]; [DNAFieldAttribute(5, "int", "pass_index", "int", 4, false)] public int pass_index; [DNAFieldAttribute(6, "int", "flag", "int", 4, false)] public int flag; [DNAFieldAttribute(7, "float", "uv_offset", "float", 4, false)] public float uv_offset; [DNAFieldAttribute(8, "float", "uv_scale", "float", 4, false)] public float uv_scale; [DNAFieldAttribute(9, "float", "fill_rotation", "float", 4, false)] public float fill_rotation; [DNAFieldAttribute(10, "float", "fill_offset[2]", "System.Single[]", 8, false)] public float[] fill_offset = new System.Single[2]; [DNAFieldAttribute(11, "float", "fill_scale", "float", 4, false)] public float fill_scale; [DNAFieldAttribute(12, "int", "layer_pass", "int", 4, false)] public int layer_pass; [DNAFieldAttribute(13, "short", "fit_method", "short", 2, false)] public short fit_method; [DNAFieldAttribute(14, "short", "mode", "short", 2, false)] public short mode; [DNAFieldAttribute(15, "float", "alignment_rotation", "float", 4, false)] public float alignment_rotation; [DNAFieldAttribute(16, "char", "_pad[4]", "System.Char[]", 4, false)] public char[] _pad = new System.Char[4]; public TextureGpencilModifierData() { this.modifier = default; this.ptr_material = default; this.layername = default; this.materialname = default; this.vgname = default; this.pass_index = default; this.flag = default; this.uv_offset = default; this.uv_scale = default; this.fill_rotation = default; this.fill_offset = default; this.fill_scale = default; this.layer_pass = default; this.fit_method = default; this.mode = default; this.alignment_rotation = default; this._pad = default; } public TextureGpencilModifierData( GpencilModifierData modifier, Material ptr_material, char[] layername, char[] materialname, char[] vgname, int pass_index, int flag, float uv_offset, float uv_scale, float fill_rotation, float[] fill_offset, float fill_scale, int layer_pass, short fit_method, short mode, float alignment_rotation, char[] _pad) { this.modifier = modifier; this.ptr_material = ptr_material; this.layername = layername; this.materialname = materialname; this.vgname = vgname; this.pass_index = pass_index; this.flag = flag; this.uv_offset = uv_offset; this.uv_scale = uv_scale; this.fill_rotation = fill_rotation; this.fill_offset = fill_offset; this.fill_scale = fill_scale; this.layer_pass = layer_pass; this.fit_method = fit_method; this.mode = mode; this.alignment_rotation = alignment_rotation; this._pad = _pad; } } }