Files
BlenderSharp/BlendFile/DNA/KS_Path.cs
2025-01-22 20:24:55 +01:00

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