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

@@ -45,6 +45,23 @@ namespace BlendFile.DNA {
public float slidermin;
[DNAFieldAttribute(14, "float", "slidermax", 4)]
public float slidermax;
public KeyBlock() {
this.ptr_next = default;
this.ptr_prev = default;
this.pos = default;
this.curval = default;
this.type = default;
this._pad1 = default;
this.relative = default;
this.flag = default;
this.totelem = default;
this.uid = default;
this.ptr_data = default;
this.name = default;
this.vgroup = default;
this.slidermin = default;
this.slidermax = default;
}
public KeyBlock(KeyBlock ptr_next, KeyBlock ptr_prev, float pos, float curval, short type, char[] _pad1, short relative, short flag, int totelem, int uid, object ptr_data, char[] name, char[] vgroup, float slidermin, float slidermax) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;