//------------------------------------------------------------------------------ // // 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(98, "KS_Path")] public class KS_Path { [DNAFieldAttribute(0, "KS_Path", "*next", "KS_Path", 4, true)] public KS_Path ptr_next; [DNAFieldAttribute(1, "KS_Path", "*prev", "KS_Path", 4, true)] public KS_Path ptr_prev; [DNAFieldAttribute(2, "ID", "*id", "ID", 4, true)] public ID ptr_id; [DNAFieldAttribute(3, "char", "group[64]", "System.Char[]", 64, false)] public char[] group = new System.Char[64]; [DNAFieldAttribute(4, "int", "idtype", "int", 4, false)] public int idtype; [DNAFieldAttribute(5, "short", "groupmode", "short", 2, false)] public short groupmode; [DNAFieldAttribute(6, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(7, "char", "*rna_path", "char", 4, true)] public char ptr_rna_path; [DNAFieldAttribute(8, "int", "array_index", "int", 4, false)] public int array_index; [DNAFieldAttribute(9, "short", "keyingflag", "short", 2, false)] public short keyingflag; [DNAFieldAttribute(10, "short", "keyingoverride", "short", 2, false)] public short keyingoverride; public KS_Path() { this.ptr_next = default; this.ptr_prev = default; this.ptr_id = default; this.group = default; this.idtype = default; this.groupmode = default; this.flag = default; this.ptr_rna_path = default; this.array_index = default; this.keyingflag = default; this.keyingoverride = default; } public KS_Path(KS_Path ptr_next, KS_Path ptr_prev, ID ptr_id, char[] group, int idtype, short groupmode, short flag, char ptr_rna_path, int array_index, short keyingflag, short keyingoverride) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_id = ptr_id; this.group = group; this.idtype = idtype; this.groupmode = groupmode; this.flag = flag; this.ptr_rna_path = ptr_rna_path; this.array_index = array_index; this.keyingflag = keyingflag; this.keyingoverride = keyingoverride; } } }