//------------------------------------------------------------------------------ // // 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(562, "bActionModifier")] public class bActionModifier { [DNAFieldAttribute(0, "bActionModifier", "*next", 72)] public bActionModifier ptr_next; [DNAFieldAttribute(1, "bActionModifier", "*prev", 72)] public bActionModifier ptr_prev; [DNAFieldAttribute(2, "short", "type", 2)] public short type; [DNAFieldAttribute(3, "short", "flag", 2)] public short flag; [DNAFieldAttribute(4, "char", "channel[32]", 1)] public char[] channel = new System.Char[32]; [DNAFieldAttribute(5, "float", "noisesize", 4)] public float noisesize; [DNAFieldAttribute(6, "float", "turbul", 4)] public float turbul; [DNAFieldAttribute(7, "short", "channels", 2)] public short channels; [DNAFieldAttribute(8, "short", "no_rot_axis", 2)] public short no_rot_axis; [DNAFieldAttribute(9, "Object", "*ob", 1160)] public Object ptr_ob; public bActionModifier(bActionModifier ptr_next, bActionModifier ptr_prev, short type, short flag, char[] channel, float noisesize, float turbul, short channels, short no_rot_axis, Object ptr_ob) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.type = type; this.flag = flag; this.channel = channel; this.noisesize = noisesize; this.turbul = turbul; this.channels = channels; this.no_rot_axis = no_rot_axis; this.ptr_ob = ptr_ob; } } }