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,33 +11,60 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CacheFile {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", 248)]
public AnimData ptr_adt;
[DNAFieldAttribute(2, "ListBase", "object_paths", 16)]
public ListBase object_paths;
[DNAFieldAttribute(3, "ListBase", "layers", 16)]
public ListBase layers;
[DNAFieldAttribute(4, "char", "filepath[1024]", 1)]
public char[] filepath = new System.Char[1024];
[DNAFieldAttribute(5, "char", "is_sequence", 1)]
public char is_sequence;
[DNAFieldAttribute(6, "char", "forward_axis", 1)]
public char forward_axis;
[DNAFieldAttribute(7, "char", "up_axis", 1)]
public char up_axis;
[DNAFieldAttribute(8, "char", "override_frame", 1)]
public char override_frame;
[DNAFieldAttribute(9, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(10, "float", "frame", 4)]
public float frame;
[DNAFieldAttribute(11, "float", "frame_offset", 4)]
public float frame_offset;
[DNAFieldAttribute(12, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(13, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(14, "char", "type", 1)]
public char type;
[DNAFieldAttribute(15, "char", "use_render_procedural", 1)]
public char use_render_procedural;
[DNAFieldAttribute(16, "char", "_pad1[3]", 1)]
public char[] _pad1 = new System.Char[3];
[DNAFieldAttribute(17, "char", "use_prefetch", 1)]
public char use_prefetch;
[DNAFieldAttribute(18, "int", "prefetch_cache_size", 4)]
public int prefetch_cache_size;
[DNAFieldAttribute(19, "int", "active_layer", 4)]
public int active_layer;
[DNAFieldAttribute(20, "char", "_pad2[3]", 1)]
public char[] _pad2 = new System.Char[3];
[DNAFieldAttribute(21, "char", "velocity_unit", 1)]
public char velocity_unit;
[DNAFieldAttribute(22, "char", "velocity_name[64]", 1)]
public char[] velocity_name = new System.Char[64];
[DNAFieldAttribute(23, "CacheArchiveHandle", "*handle", 0)]
public CacheArchiveHandle ptr_handle;
[DNAFieldAttribute(24, "char", "handle_filepath[1024]", 1)]
public char[] handle_filepath = new System.Char[1024];
[DNAFieldAttribute(25, "GSet", "*handle_readers", 0)]
public GSet ptr_handle_readers;
public CacheFile(
ID id,