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 interp;
[DNAFieldAttribute(13, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public ImagePaintSettings() {
this.paint = default;
this.flag = default;
this.missing_data = default;
this.seam_bleed = default;
this.normal_angle = default;
this.screen_grab_size = default;
this.mode = default;
this.ptr_stencil = default;
this.ptr_clone = default;
this.ptr_canvas = default;
this.stencil_col = default;
this.dither = default;
this.interp = default;
this._pad = default;
}
public ImagePaintSettings(Paint paint, short flag, short missing_data, short seam_bleed, short normal_angle, short[] screen_grab_size, int mode, Image ptr_stencil, Image ptr_clone, Image ptr_canvas, float[] stencil_col, float dither, int interp, char[] _pad) {
this.paint = paint;
this.flag = flag;