//------------------------------------------------------------------------------ // // 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(478, "ParticleInstanceModifierData")] public class ParticleInstanceModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)] public ModifierData modifier; [DNAFieldAttribute(1, "Object", "*ob", "Object", 4, true)] public Object ptr_ob; [DNAFieldAttribute(2, "short", "psys", "short", 2, false)] public short psys; [DNAFieldAttribute(3, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(4, "short", "axis", "short", 2, false)] public short axis; [DNAFieldAttribute(5, "short", "space", "short", 2, false)] public short space; [DNAFieldAttribute(6, "float", "position", "float", 4, false)] public float position; [DNAFieldAttribute(7, "float", "random_position", "float", 4, false)] public float random_position; [DNAFieldAttribute(8, "float", "rotation", "float", 4, false)] public float rotation; [DNAFieldAttribute(9, "float", "random_rotation", "float", 4, false)] public float random_rotation; [DNAFieldAttribute(10, "float", "particle_amount", "float", 4, false)] public float particle_amount; [DNAFieldAttribute(11, "float", "particle_offset", "float", 4, false)] public float particle_offset; [DNAFieldAttribute(12, "char", "index_layer_name[68]", "System.Char[]", 68, false)] public char[] index_layer_name = new System.Char[68]; [DNAFieldAttribute(13, "char", "value_layer_name[68]", "System.Char[]", 68, false)] public char[] value_layer_name = new System.Char[68]; [DNAFieldAttribute(14, "void", "*_pad1", "void", 4, true)] public object ptr__pad1; public ParticleInstanceModifierData() { this.modifier = default; this.ptr_ob = default; this.psys = default; this.flag = default; this.axis = default; this.space = default; this.position = default; this.random_position = default; this.rotation = default; this.random_rotation = default; this.particle_amount = default; this.particle_offset = default; this.index_layer_name = default; this.value_layer_name = default; this.ptr__pad1 = default; } public ParticleInstanceModifierData(ModifierData modifier, Object ptr_ob, short psys, short flag, short axis, short space, float position, float random_position, float rotation, float random_rotation, float particle_amount, float particle_offset, char[] index_layer_name, char[] value_layer_name, object ptr__pad1) { this.modifier = modifier; this.ptr_ob = ptr_ob; this.psys = psys; this.flag = flag; this.axis = axis; this.space = space; this.position = position; this.random_position = random_position; this.rotation = rotation; this.random_rotation = random_rotation; this.particle_amount = particle_amount; this.particle_offset = particle_offset; this.index_layer_name = index_layer_name; this.value_layer_name = value_layer_name; this.ptr__pad1 = ptr__pad1; } } }