Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -29,6 +29,15 @@ namespace BlendFile.DNA {
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() {
this.id_type = default;
this.type = default;
this.ptr_id = default;
this.parent = default;
this.sub_parent = default;
this.parent_orig = default;
this.parent_corners_orig = default;
}
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;
this.type = type;