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

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public float blendin;
[DNAFieldAttribute(13, "float", "blendout", 4)]
public float blendout;
public FModifier() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_curve = default;
this.ptr_data = default;
this.name = default;
this.type = default;
this.flag = default;
this.ui_expand_flag = default;
this._pad = default;
this.influence = default;
this.sfra = default;
this.efra = default;
this.blendin = default;
this.blendout = default;
}
public FModifier(FModifier ptr_next, FModifier ptr_prev, FCurve ptr_curve, object ptr_data, char[] name, short type, short flag, short ui_expand_flag, char[] _pad, float influence, float sfra, float efra, float blendin, float blendout) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;