Files
BlenderSharp/BlendFile/DNA/KS_Path.cs

68 lines
2.7 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(98, "KS_Path", 112)]
public class KS_Path {
[DNAFieldAttribute(0, "KS_Path", "*next", "KS_Path", 8, true, 0)]
public KS_Path ptr_next;
[DNAFieldAttribute(1, "KS_Path", "*prev", "KS_Path", 8, true, 8)]
public KS_Path ptr_prev;
[DNAFieldAttribute(2, "ID", "*id", "ID", 8, true, 16)]
public ID ptr_id;
[DNAFieldAttribute(3, "char", "group[64]", "System.Char[]", 64, false, 24)]
public char[] group = new System.Char[64];
[DNAFieldAttribute(4, "int", "idtype", "int", 4, false, 88)]
public int idtype;
[DNAFieldAttribute(5, "short", "groupmode", "short", 2, false, 92)]
public short groupmode;
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 94)]
public short flag;
[DNAFieldAttribute(7, "char", "*rna_path", "char", 8, true, 96)]
public char ptr_rna_path;
[DNAFieldAttribute(8, "int", "array_index", "int", 4, false, 104)]
public int array_index;
[DNAFieldAttribute(9, "short", "keyingflag", "short", 2, false, 108)]
public short keyingflag;
[DNAFieldAttribute(10, "short", "keyingoverride", "short", 2, false, 110)]
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;
}
}
}