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

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public char subsurfLevels;
[DNAFieldAttribute(11, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
public ShrinkwrapModifierData() {
this.modifier = default;
this.ptr_target = default;
this.ptr_auxTarget = default;
this.vgroup_name = default;
this.keepDist = default;
this.shrinkType = default;
this.shrinkOpts = default;
this.shrinkMode = default;
this.projLimit = default;
this.projAxis = default;
this.subsurfLevels = default;
this._pad = default;
}
public ShrinkwrapModifierData(ModifierData modifier, Object ptr_target, Object ptr_auxTarget, char[] vgroup_name, float keepDist, short shrinkType, char shrinkOpts, char shrinkMode, float projLimit, char projAxis, char subsurfLevels, char[] _pad) {
this.modifier = modifier;
this.ptr_target = ptr_target;