Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,18 +11,30 @@ 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;