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,31 +11,56 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class PointCache {
[DNAFieldAttribute(0, "PointCache", "*next", 1392)]
public PointCache ptr_next;
[DNAFieldAttribute(1, "PointCache", "*prev", 1392)]
public PointCache ptr_prev;
[DNAFieldAttribute(2, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(3, "int", "step", 4)]
public int step;
[DNAFieldAttribute(4, "int", "simframe", 4)]
public int simframe;
[DNAFieldAttribute(5, "int", "startframe", 4)]
public int startframe;
[DNAFieldAttribute(6, "int", "endframe", 4)]
public int endframe;
[DNAFieldAttribute(7, "int", "editframe", 4)]
public int editframe;
[DNAFieldAttribute(8, "int", "last_exact", 4)]
public int last_exact;
[DNAFieldAttribute(9, "int", "last_valid", 4)]
public int last_valid;
[DNAFieldAttribute(10, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(11, "int", "totpoint", 4)]
public int totpoint;
[DNAFieldAttribute(12, "int", "index", 4)]
public int index;
[DNAFieldAttribute(13, "short", "compression", 2)]
public short compression;
[DNAFieldAttribute(14, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(15, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(16, "char", "prev_name[64]", 1)]
public char[] prev_name = new System.Char[64];
[DNAFieldAttribute(17, "char", "info[128]", 1)]
public char[] info = new System.Char[128];
[DNAFieldAttribute(18, "char", "path[1024]", 1)]
public char[] path = new System.Char[1024];
[DNAFieldAttribute(19, "char", "*cached_frames", 1)]
public char ptr_cached_frames;
[DNAFieldAttribute(20, "int", "cached_frames_len", 4)]
public int cached_frames_len;
[DNAFieldAttribute(21, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(22, "ListBase", "mem_cache", 16)]
public ListBase mem_cache;
[DNAFieldAttribute(23, "PTCacheEdit", "*edit", 0)]
public PTCacheEdit ptr_edit;
public PointCache(
PointCache ptr_next,