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 int count;
[DNAFieldAttribute(13, "float", "uv_offset[2]", 4)]
public float[] uv_offset = new System.Single[2];
public ArrayModifierData() {
this.modifier = default;
this.ptr_start_cap = default;
this.ptr_end_cap = default;
this.ptr_curve_ob = default;
this.ptr_offset_ob = default;
this.offset = default;
this.scale = default;
this.length = default;
this.merge_dist = default;
this.fit_type = default;
this.offset_type = default;
this.flags = default;
this.count = default;
this.uv_offset = default;
}
public ArrayModifierData(ModifierData modifier, Object ptr_start_cap, Object ptr_end_cap, Object ptr_curve_ob, Object ptr_offset_ob, float[] offset, float[] scale, float length, float merge_dist, int fit_type, int offset_type, int flags, int count, float[] uv_offset) {
this.modifier = modifier;
this.ptr_start_cap = ptr_start_cap;