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

@@ -37,6 +37,19 @@ namespace BlendFile.DNA {
public int segments_num;
[DNAFieldAttribute(10, "int", "segment_active_index", 4)]
public int segment_active_index;
public GreasePencilTimeModifierData() {
this.modifier = default;
this.influence = default;
this.flag = default;
this.offset = default;
this.frame_scale = default;
this.mode = default;
this.sfra = default;
this.efra = default;
this.ptr_segments_array = default;
this.segments_num = default;
this.segment_active_index = default;
}
public GreasePencilTimeModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, int flag, int offset, float frame_scale, int mode, int sfra, int efra, GreasePencilTimeModifierSegment ptr_segments_array, int segments_num, int segment_active_index) {
this.modifier = modifier;
this.influence = influence;