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

@@ -45,6 +45,23 @@ namespace BlendFile.DNA {
public short mode;
[DNAFieldAttribute(14, "float", "dist", 4)]
public float dist;
public bKinematicConstraint() {
this.ptr_tar = default;
this.iterations = default;
this.flag = default;
this.rootbone = default;
this.max_rootbone = default;
this.subtarget = default;
this.ptr_poletar = default;
this.polesubtarget = default;
this.poleangle = default;
this.weight = default;
this.orientweight = default;
this.grabtarget = default;
this.type = default;
this.mode = default;
this.dist = default;
}
public bKinematicConstraint(Object ptr_tar, short iterations, short flag, short rootbone, short max_rootbone, char[] subtarget, Object ptr_poletar, char[] polesubtarget, float poleangle, float weight, float orientweight, float[] grabtarget, short type, short mode, float dist) {
this.ptr_tar = ptr_tar;
this.iterations = iterations;