Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(808, "ImagePaintSettings", 184)]
public class ImagePaintSettings {
[DNAFieldAttribute(0, "Paint", "paint", "Paint", 120, false)]
[DNAFieldAttribute(0, "Paint", "paint", "Paint", 120, false, 0)]
public Paint paint;
[DNAFieldAttribute(1, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(1, "short", "flag", "short", 2, false, 120)]
public short flag;
[DNAFieldAttribute(2, "short", "missing_data", "short", 2, false)]
[DNAFieldAttribute(2, "short", "missing_data", "short", 2, false, 122)]
public short missing_data;
[DNAFieldAttribute(3, "short", "seam_bleed", "short", 2, false)]
[DNAFieldAttribute(3, "short", "seam_bleed", "short", 2, false, 124)]
public short seam_bleed;
[DNAFieldAttribute(4, "short", "normal_angle", "short", 2, false)]
[DNAFieldAttribute(4, "short", "normal_angle", "short", 2, false, 126)]
public short normal_angle;
[DNAFieldAttribute(5, "short", "screen_grab_size[2]", "System.Int16[]", 4, false)]
[DNAFieldAttribute(5, "short", "screen_grab_size[2]", "System.Int16[]", 4, false, 128)]
public short[] screen_grab_size = new System.Int16[2];
[DNAFieldAttribute(6, "int", "mode", "int", 4, false)]
[DNAFieldAttribute(6, "int", "mode", "int", 4, false, 132)]
public int mode;
[DNAFieldAttribute(7, "Image", "*stencil", "Image", 8, true)]
[DNAFieldAttribute(7, "Image", "*stencil", "Image", 8, true, 136)]
public Image ptr_stencil;
[DNAFieldAttribute(8, "Image", "*clone", "Image", 8, true)]
[DNAFieldAttribute(8, "Image", "*clone", "Image", 8, true, 144)]
public Image ptr_clone;
[DNAFieldAttribute(9, "Image", "*canvas", "Image", 8, true)]
[DNAFieldAttribute(9, "Image", "*canvas", "Image", 8, true, 152)]
public Image ptr_canvas;
[DNAFieldAttribute(10, "float", "stencil_col[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(10, "float", "stencil_col[3]", "System.Single[]", 12, false, 160)]
public float[] stencil_col = new System.Single[3];
[DNAFieldAttribute(11, "float", "dither", "float", 4, false)]
[DNAFieldAttribute(11, "float", "dither", "float", 4, false, 172)]
public float dither;
[DNAFieldAttribute(12, "int", "interp", "int", 4, false)]
[DNAFieldAttribute(12, "int", "interp", "int", 4, false, 176)]
public int interp;
[DNAFieldAttribute(13, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(13, "char", "_pad[4]", "System.Char[]", 4, false, 180)]
public char[] _pad = new System.Char[4];
public ImagePaintSettings() {
this.paint = default;