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,40 +11,74 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SpaceClip {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "char", "gizmo_flag", 1)]
public char gizmo_flag;
[DNAFieldAttribute(7, "char", "_pad1[3]", 1)]
public char[] _pad1 = new System.Char[3];
[DNAFieldAttribute(8, "float", "xof", 4)]
public float xof;
[DNAFieldAttribute(9, "float", "yof", 4)]
public float yof;
[DNAFieldAttribute(10, "float", "xlockof", 4)]
public float xlockof;
[DNAFieldAttribute(11, "float", "ylockof", 4)]
public float ylockof;
[DNAFieldAttribute(12, "float", "zoom", 4)]
public float zoom;
[DNAFieldAttribute(13, "MovieClipUser", "user", 8)]
public MovieClipUser user;
[DNAFieldAttribute(14, "MovieClip", "*clip", 2568)]
public MovieClip ptr_clip;
[DNAFieldAttribute(15, "MovieClipScopes", "scopes", 136)]
public MovieClipScopes scopes;
[DNAFieldAttribute(16, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(17, "short", "mode", 2)]
public short mode;
[DNAFieldAttribute(18, "short", "view", 2)]
public short view;
[DNAFieldAttribute(19, "int", "path_length", 4)]
public int path_length;
[DNAFieldAttribute(20, "float", "loc[2]", 4)]
public float[] loc = new System.Single[2];
[DNAFieldAttribute(21, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(22, "float", "angle", 4)]
public float angle;
[DNAFieldAttribute(23, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(24, "float", "stabmat[4][4]", 4)]
public float[,] stabmat = new System.Single[4,4];
[DNAFieldAttribute(25, "float", "unistabmat[4][4]", 4)]
public float[,] unistabmat = new System.Single[4,4];
[DNAFieldAttribute(26, "int", "postproc_flag", 4)]
public int postproc_flag;
[DNAFieldAttribute(27, "short", "gpencil_src", 2)]
public short gpencil_src;
[DNAFieldAttribute(28, "char", "_pad2[2]", 1)]
public char[] _pad2 = new System.Char[2];
[DNAFieldAttribute(29, "int", "around", 4)]
public int around;
[DNAFieldAttribute(30, "char", "_pad4[4]", 1)]
public char[] _pad4 = new System.Char[4];
[DNAFieldAttribute(31, "float", "cursor[2]", 4)]
public float[] cursor = new System.Single[2];
[DNAFieldAttribute(32, "MaskSpaceInfo", "mask_info", 16)]
public MaskSpaceInfo mask_info;
public SpaceClip(
SpaceLink ptr_next,