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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MaskParent {
[DNAFieldAttribute(0, "int", "id_type", 4)]
public int id_type;
[DNAFieldAttribute(1, "int", "type", 4)]
public int type;
[DNAFieldAttribute(2, "ID", "*id", 208)]
public ID ptr_id;
[DNAFieldAttribute(3, "char", "parent[64]", 1)]
public char[] parent = new System.Char[64];
[DNAFieldAttribute(4, "char", "sub_parent[64]", 1)]
public char[] sub_parent = new System.Char[64];
[DNAFieldAttribute(5, "float", "parent_orig[2]", 4)]
public float[] parent_orig = new System.Single[2];
[DNAFieldAttribute(6, "float", "parent_corners_orig[4][2]", 4)]
public float[,] parent_corners_orig = new System.Single[4,2];
public MaskParent(int id_type, int type, ID ptr_id, char[] parent, char[] sub_parent, float[] parent_orig, float[,] parent_corners_orig) {
this.id_type = id_type;