Regenerated code files

This commit is contained in:
Samuele Lorefice
2025-03-07 19:13:29 +01:00
parent 26add1559f
commit 73e98f5c5d
10 changed files with 163 additions and 163 deletions

View File

@@ -45,22 +45,22 @@ namespace BlendFile.DNA {
public short pathflag;
[DNAFieldAttribute(16, "ListBase", 14, "collections", "ListBase", false, 288)]
public ListBase collections;
[DNAFieldAttribute(4, "int", 17, "collection_root_count", "int", false, 304)]
public int collection_root_count;
[DNAFieldAttribute(64, "char", 18, "active_collection_name[64]", "System.Char[]", false, 308)]
public char[] active_collection_name = new System.Char[64];
[DNAFieldAttribute(4, "int", 19, "layer_used", "int", false, 372)]
public int layer_used;
[DNAFieldAttribute(4, "int", 20, "layer", "int", false, 376)]
public int layer;
[DNAFieldAttribute(4, "int", 21, "layer_protected", "int", false, 380)]
public int layer_protected;
[DNAFieldAttribute(4, "float", 22, "axes_position", "float", false, 384)]
public float axes_position;
[DNAFieldAttribute(16, "bArmature_Runtime", 23, "runtime", "bArmature_Runtime", false, 388)]
public bArmature_Runtime runtime;
[DNAListAttribute(8, "BoneCollection", "**collection_array", 15, "BoneCollection", "int", "collection_array_num", 16, 404, 0)]
[DNAListAttribute(8, "BoneCollection", "**collection_array", 15, "BoneCollection", 312, "collection_array_num", 16, 304, 0)]
public System.Collections.Generic.List<BoneCollection> collection_array;
[DNAFieldAttribute(4, "int", 17, "collection_root_count", "int", false, 316)]
public int collection_root_count;
[DNAFieldAttribute(64, "char", 18, "active_collection_name[64]", "System.Char[]", false, 320)]
public char[] active_collection_name = new System.Char[64];
[DNAFieldAttribute(4, "int", 19, "layer_used", "int", false, 384)]
public int layer_used;
[DNAFieldAttribute(4, "int", 20, "layer", "int", false, 388)]
public int layer;
[DNAFieldAttribute(4, "int", 21, "layer_protected", "int", false, 392)]
public int layer_protected;
[DNAFieldAttribute(4, "float", 22, "axes_position", "float", false, 396)]
public float axes_position;
[DNAFieldAttribute(16, "bArmature_Runtime", 23, "runtime", "bArmature_Runtime", false, 400)]
public bArmature_Runtime runtime;
public bArmature() {
this.id = default;
this.adt = default;
@@ -77,6 +77,7 @@ namespace BlendFile.DNA {
this.deformflag = default;
this.pathflag = default;
this.collections = default;
this.collection_array = default;
this.collection_root_count = default;
this.active_collection_name = default;
this.layer_used = default;
@@ -84,7 +85,6 @@ namespace BlendFile.DNA {
this.layer_protected = default;
this.axes_position = default;
this.runtime = default;
this.collection_array = default;
}
public bArmature(
ID id,
@@ -102,14 +102,14 @@ namespace BlendFile.DNA {
short deformflag,
short pathflag,
ListBase collections,
System.Collections.Generic.List<BoneCollection> collection_array,
int collection_root_count,
char[] active_collection_name,
int layer_used,
int layer,
int layer_protected,
float axes_position,
bArmature_Runtime runtime,
System.Collections.Generic.List<BoneCollection> collection_array) {
bArmature_Runtime runtime) {
this.id = id;
this.adt = adt;
this.bonebase = bonebase;
@@ -125,6 +125,7 @@ namespace BlendFile.DNA {
this.deformflag = deformflag;
this.pathflag = pathflag;
this.collections = collections;
this.collection_array = collection_array;
this.collection_root_count = collection_root_count;
this.active_collection_name = active_collection_name;
this.layer_used = layer_used;
@@ -132,7 +133,6 @@ namespace BlendFile.DNA {
this.layer_protected = layer_protected;
this.axes_position = axes_position;
this.runtime = runtime;
this.collection_array = collection_array;
}
}
}