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

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public char euler_order;
[DNAFieldAttribute(9, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
public bRotLimitConstraint() {
this.xmin = default;
this.xmax = default;
this.ymin = default;
this.ymax = default;
this.zmin = default;
this.zmax = default;
this.flag = default;
this.flag2 = default;
this.euler_order = default;
this._pad = default;
}
public bRotLimitConstraint(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax, short flag, short flag2, char euler_order, char[] _pad) {
this.xmin = xmin;
this.xmax = xmax;