Files
BlenderSharp/BlendFile/DNA/KS_Path.cs
2025-03-11 19:12:04 +01:00

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