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

@@ -27,6 +27,14 @@ namespace BlendFile.DNA {
public float normal_dist;
[DNAFieldAttribute(5, "float", "influence", 4)]
public float influence;
public SDefBind() {
this.ptr_vert_inds = default;
this.numverts = default;
this.mode = default;
this.ptr_vert_weights = default;
this.normal_dist = default;
this.influence = default;
}
public SDefBind(int ptr_vert_inds, int numverts, int mode, float ptr_vert_weights, float normal_dist, float influence) {
this.ptr_vert_inds = ptr_vert_inds;
this.numverts = numverts;