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

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public char ptr_error;
[DNAFieldAttribute(12, "void", "*runtime", 0)]
public object ptr_runtime;
public ModifierData() {
this.ptr_next = default;
this.ptr_prev = default;
this.type = default;
this.mode = default;
this.execution_time = default;
this.flag = default;
this.ui_expand_flag = default;
this.layout_panel_open_flag = default;
this._pad = default;
this.persistent_uid = default;
this.name = default;
this.ptr_error = default;
this.ptr_runtime = default;
}
public ModifierData(ModifierData ptr_next, ModifierData ptr_prev, int type, int mode, float execution_time, short flag, short ui_expand_flag, ushort layout_panel_open_flag, char[] _pad, int persistent_uid, char[] name, char ptr_error, object ptr_runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;