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

@@ -53,6 +53,27 @@ namespace BlendFile.DNA {
public float eval_factor;
[DNAFieldAttribute(18, "char", "filepath[1024]", 1)]
public char[] filepath = new System.Char[1024];
public MeshCacheModifierData() {
this.modifier = default;
this.flag = default;
this.type = default;
this.time_mode = default;
this.play_mode = default;
this.forward_axis = default;
this.up_axis = default;
this.flip_axis = default;
this.interp = default;
this.factor = default;
this.deform_mode = default;
this.defgrp_name = default;
this._pad = default;
this.frame_start = default;
this.frame_scale = default;
this.eval_frame = default;
this.eval_time = default;
this.eval_factor = default;
this.filepath = default;
}
public MeshCacheModifierData(
ModifierData modifier,
char flag,